看起来你的Vim正在为你做拼写检查.你可以通过添加来关闭它
原文链接:https://www.f2er.com/bash/386409.htmlset nospell
在.vimrc文件中.要在文件中重新启动,您可以执行以下操作:
:setlocal spell spelllang=en_us
用美式英语进行拼写检查. :setlocal更改当前缓冲区的设置,而:set对所有当前打开的缓冲区进行更改.您可以阅读更多关于Vim如何拼写检查的工作here.
自动启用某些文件的拼写检查可能很有用.例如,要在.tex文件中启用拼写检查,可以将以下内容添加到.vimrc中:
" Enable spell checking when opening .tex files autocmd! au BufNewFile,BufRead *.tex setlocal spell spelllang=en_us " Or if you have filetype detection enabled: " au FileType tex setlocal spell spelllang=en_us
注意autocmd!清除以前定义的au命令,只需要一次.