Sublime Text - 拼写检查


Sublime Text Editor使用Hunspell进行拼写检查过程。Hunspell是LibreOffice,Mozilla Thunderbird,Google Chrome和许多专有软件包的拼写检查程序。Sublime Text编辑器包括字典支持,用于对单词进行正确的拼写检查。

字典

Sublime Text包含UTF-8编码的词典。要使用Sublime Text编辑器实现字典,应首先将其转换为UTF-8。如果用户具有UTF-8编码字典,则可以使用Sublime Text编辑器中的Preferences选项进行安装。

Sublime Text

您可以从视图→字典菜单中选择字典,如给定的屏幕截图所示

Sublime Text

字典设置

为Sublime Text Editor的拼写检查定义了两个设置

  • 拼写检查
  • 字典
// Set to true to turn spell checking on by default
"spell_check": false,

// Word list to use for spell checking
"dictionary": "Packages/Language - English/en_US.dic"

这些配置包含在设置文件中。添加和忽略的单词分别存储在added_words和ignored_words键下的用户设置中。