如何在Vim的配置文件中注释:“.vimrc”?

问题描述 投票:0回答:4

如何在 Vim 的配置文件中添加注释,例如

.vimrc?

vim comments configuration-files
4个回答
632
投票

您要评论的文本左侧有双引号。

示例:

"   this is how a comment looks like in ~/.vimrc

(不要包含结束双引号。)


147
投票
"This is a comment in vimrc. It does not have a closing quote 

来源:http://vim.wikia.com/wiki/Backing_up_and_commenting_vimrc


16
投票

同上。使用双引号开始评论,不要使用结束引号。

此外,您可以在文件 .vimrc 中使用 命令后跟注释,如下所示:

set nu  "display line number 

14
投票

您可以通过以下任一方式在 Vim 的配置文件中添加注释:

" brief description of the command    

或:

"" commented command

摘自这里

© www.soinside.com 2019 - 2024. All rights reserved.