tcomment_vim
tcomment_vim copied to clipboard
`gc` does not uncomment if only one line is selected and the comment symbol is at the begining of a line
When I block select only one line and try to uncomment it by using gc in .py files, it gets commented again, instead of uncommented if comment symbol is at the begining of a line. This behaviour also applies for other file types too.
Also experiencing this.
I would love to see this fixed. Would do myself, if I knew vimscript.
Could you please be more specific and provide an example?
With "block select" you mean
Why would you want to "block select" a single line?
My use case is in Python, I have several imports:
import time
import os
I visually select first import line by clicking shift+v and comment it with gc.
# import time
import os
Some time passes and I want to uncomment that line, so go on it, click shift+v and gc and the result is another comment instead of uncommented line:
# # import time
import os
Why do I use this combination? I got used to using gc for toggling comments disregarding the size of code block. The same applies for .vimrc edits - sometimes I want to toggle commenting for a single line.