如何在Atom的linter-spell字典中添加单词

时间:2017-12-12 08:17:01

标签: atom-editor spell-checking

我在Atom中使用 linter-spell 包而不是“默认情况下”拼写检查

在这个question中,有人要求在拼写检查词典中添加单词。

我的问题是如何在 linter-spell 词典中添加单词。

3 个答案:

答案 0 :(得分:5)

根据linter-spell的https://github.com/rollup/rollup-plugin-typescript#typescript-version

  

错误拼写可以使用documentation包更正或添加到个人词典中,通过ctrl +在OSX上输入,并在Linux和Windows上输入alt +。

答案 1 :(得分:1)

版本1.12具有此功能。按住 cmd + shift ,同时将鼠标悬停在单词上并选择add this word

答案 2 :(得分:0)

documentation中所述,

  

拼写检查是在文件保存时完成的,其中包含linter显示的拼写错误。错误拼写可以通过ctrl +在OSX上输入并在Linux和Windows上输入alt +来使用意图包更正或添加到个人词典中。

here给出了您需要做的清楚描述。

这样可以提示你fix linter issue,点击它就可以指定一个JS函数来做你想做的事情。我还发现linter-spell依赖于HunspellGNU Aspel,这意味着您可以将这些单词添加到系统词典/或其路径中的任何字典中,以使其正常工作。

<强>的hunspell

向hunspell dict添加新单词。 echo -e "*new_word\n#" | hunspell -a

希望这有帮助。