I do not want to remove the entire line of code in VIM, what I want is to work with the comment codes. I have 3 cases:
Comments that open and close (usually multiple lines):
/* doSomething(); */
Comments with 2 characters in the line of code (one per line):
// doSomething();
And comments with only 1 character at the beginning (one per line):
# doSomething();
I'd like to know an agile way to add and remove these types of comments in VIM, so that it only applies to selective lines of code and not to the entire file.