在gVim中拼写检查的最佳方法是什么?有加载项还是什么?我希望它也提供更正.
使用:set spell
打开拼写检查.如果是源代码,gvim足够聪明,只能拼写检查注释和字符串文字.
:help spell
会给你所有的细节.以下是一些摘录:
To search for the next misspelled word: ]s Move to next misspelled word after the cursor. A count before the command can be used to repeat. 'wrapscan' applies. [s Like "]s" but search backwards, find the misspelled word before the cursor.
Finding suggestions for bad words: z= For the word under/after the cursor, suggest correctly spelled words.
To add words to your own word list: zg Add word under the cursor as a good word
另请参阅:help set spelllang
有关更改字典以包括其他区域,语言或单词集(例如,医学术语)的信息.
必须使用| + syntax |编译gvim.
我没有放入:set spell
我的.vimrc,因为当我编码时,我的评论中有太多变量名称被标记.如果要检查某种文件类型,请在.vimrc中使用自动命令.或者只需在需要时手动打开它.