How To Disable Automatic Comment Insertion In VIM
erics, August 6th, 2020
Disable NOW in vim:
1 |
:set formatoptions-=cro |
To disable auto-comments permanently, add the following line to ~/.vimrc:
1 |
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o |
To see the current settings:
1 |
:set formatoptions? |
Visit https://vim.fandom.com/wiki/Disable_automatic_comment_insertion for more information!