How To Disable Automatic Comment Insertion In VIM
erics, Posted August 6th, 2020 at 4:37:56pm
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!
Leave Your Comment
All fields marked with "*" are required.