参考:http://vim.wikia.com/wiki/Disable_automatic_comment_insertion
linux下,打开/etc/vimrc,末尾加入一行:
au FileType c,cpp setlocal comments-=:// comments+=f://
只是设置成这样,注释换行下一行会默认有一个缩进,这样代码都乱了,需要再添加一行:
set paste
这样默认打开vim进入插入模式不是普通的insert模式,而是insert(paste)粘贴模式,如果要退出这个模式直接vim中使用:set nopaste即可退出,再进入可以使用:set paste。粘贴模式下粘贴代码注释换行不缩进,跟粘贴内容一致,非常好用。