拼写检查
概述
Sublime Text使用了Hunspell来做拼写检查的支持。可以从OpenOffice.org Extension List获取额外的词典。
Sublime Text可使用的词典在这里https://github.com/SublimeText/Dictionaries
词典
Sublime Text目前只支持UTF-8编码的词典。大部分词典并不是UTF-8编码的,而是使用一种更紧凑的编码。所以在Sublime Text中使用词典,需要将它转换成UTF-8编码。
如果你有一个UTF-8编码的词典,可以将它放在一package中,比如,Packages/User, 可以通过Preferences/Browse Packages菜单访问。然后就可以在View/Dictionary菜单中选择词典了。
配置
有两项配置会影响拼写检查:spell_check, 控制是否启用,dictionary, 指定词典的路径。示例:
- "spell_check": true,
- "dictionary": "Packages/Language - English/en_US.dic"
命令
- next_misspelling: 选择下一个拼写错误
- prev_misspelling: 选择上一个拼写错误
- ignore_word: 指定word单词添加到忽略列表中。
原文:
http://feliving.github.io/Sublime-Text-3-Documentation/spell_checking.html