vim-commentary icon indicating copy to clipboard operation
vim-commentary copied to clipboard

uncommenting a commented line will double comment line

Open Dbz opened this issue 5 years ago • 0 comments

I have these lines in my .vimrc file:

"" Set the puppet .pp file type
"au BufRead,BufNewFile *.pp set filetype=puppet

I highlight both lines and gc and this is the result:

""" Set the puppet .pp file type
""au BufRead,BufNewFile *.pp set filetype=puppet

I think this is because there is no space between the comment and the first character i.e. ""comment instead of " "comment.

Dbz avatar Dec 01 '18 23:12 Dbz