this epic question中的几个用户将.vimrc中的以下内容:
" Necesary for lots of cool vim things set nocompatible
但是真的有必要吗?从文档:
'compatible' 'cp' boolean (default on,off when a |vimrc| or |gvimrc| file is found)
如果设置nocompatible进入一个.vimrc,这意味着.vimrc文件存在,似乎使它无意义。
如果是系统范围的vimrc,则此选项不会关闭。因此,如果您要更改系统范围的vimrc,并且您需要它,您需要设置它。
原文链接:https://www.f2er.com/bash/391916.html从文档部分*compatible-default*(强调我):
When Vim starts,the ‘compatible’
option is on. This will be used when
Vim starts its initializations. But
as soon as a user vimrc file is found,
or a vimrc file in the current
directory,or the “VIMINIT”
environment variable is set,it will
be set to ‘nocompatible’.
另一个区别是显式设置“不兼容”的操作,使用-C flag调用vim。
在任何其他情况下,是的,在你的vimrc中设置’nocompatible’是一个noop。
最后,我认为这只是一个“更安全比对不起”的问题。