欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

禁止vim换行后自动添加的注释符号 博客分类: 编辑器 vim换行自动注释

程序员文章站 2024-03-25 23:17:04
...

参考http://*.com/a/23326474
在vimrc文件中加入如下命令即可,网络很多直接设置的方法在我这里都没有用,我的vim版本是7.4,而且我两台电脑上都不起作用。有时候找个靠谱的方法太难了。


augroup Format-Options
    autocmd!
    autocmd BufEnter * setlocal formatoptions-=c formatoptions-=r formatoptions-=o

    " This can be done as well instead of the previous line, for setting formatoptions as you choose:
    autocmd BufEnter * setlocal formatoptions=crqn2l1j
augroup END