usr*_*301 30
您已开启拼写检查.使用它关闭它
:set nospell
Run Code Online (Sandbox Code Playgroud)
(来源:http://www.linux.com/learn/tutorials/357267-using-spell-checking-in-vim)
禁用突出显示并不总是您真正想做的事情。相反,您可以更改错误的样式,使它们变得更加友好。在设置任何样式后放置:
" Any other stuff like setting colorscheme
" colorscheme distinguished
" Change style of highlighting
hi clear SpellBad
hi SpellBad cterm=underline
Run Code Online (Sandbox Code Playgroud)
因此,您的错误将以不烦人的方式加下划线。