我将vimconfig中的默认设置复制到我新创建的.vimrc中。在我开始使用以下一些消息之后:
E518: Unknown option: #
阅读vim e518: unknown option:我认为它与modeline有关:
" [...]行采用Vim识别为模式行的格式,如错误消息中所述。 Modelines允许用户在文件中设置选项" - jamessan
我不太了解:help modeline
我是否需要添加以下行:
vi:noai:sw=3 ts=6
vim: tw=77
因为我重新启动vim后set: nomodeline
没有效果
如何让vim忽略我.vimrc中的评论?
答案 0 :(得分:3)
.vimrc
中的评论以双引号("
)开头。
示例:
"
" using the mouse
"
" mouse - list of flags for using the mouse
set mouse=n
" mousemodel - "extend", "popup" or "popup_setpos"; what the right mouse button is used for
set mousem=extend