ale*_*nco 245 vim comments configuration-files
如何在Vim的配置文件中添加注释,例如 .vimrc?
Myl*_*les 327
您要评论的文字左侧的双引号.
例:
" this is how a comment looks like in ~/.vimrc
小智 82
"This is a comment in vimrc. It does not have a closing quote
Run Code Online (Sandbox Code Playgroud)
资料来源:http://vim.wikia.com/wiki/Backing_up_and_commenting_vimrc
Sau*_*abh 14
您可以通过以下任一方式在 Vim 的配置文件中添加注释:
" brief description of the command
Run Code Online (Sandbox Code Playgroud)
或者:
"" commented command
Run Code Online (Sandbox Code Playgroud)
取自这里