我不知道Vim可以进行拼写检查,它可以修改〜/ .vim中的一个拼写文件,以保持单词标记为好。
我想将“本地”拼写文件保存在与我正在编辑的文件相同的目录中,这样如果我在不同的目录中编辑不同的文件,则会使用不同的拼写文件。 / p>
我如何设置Vim来执行此操作?
答案 0 :(得分:1)
Vim自己的帮助在这里很有用:
:help spellfile
Name of the word list file where words are added for the zg and zw commands. It must end in ".{encoding}.add". You need to include the path, otherwise the file is placed in the current directory.
更详细的信息: http://thejakeharding.com/tutorial/2012/06/13/using-spell-check-in-vim.html Separate Vim spellfile for custom words
所以:
:set spellfile=./en.utf-8.add
HTH