In vim, how would I go about inserting characters at the beginning of each line in a selection? For instance, let's say I want to comment out a block of code by prepending '//' at the beginning of each line (assuming my language's comment system doesn't allow block commenting like /* */). How would I do this?
|
7
|
|||||
|
|
|
This replaces the beginning of each line with "//":
This replaces the beginning of each selected line (use visual mode to select) with "//":
|
||
|
|
|
||||||||||
|
|
|
If you want to get super fancy about it, put this in your .vimrc:
Then, whenever in visual mode, you can hit |
|||
|
|
|
|
Yet another way:
|
||
|
|
I can recommend the EnhCommentify plugin. eg. put this to your vimrc:
you can then comment/uncomment the (selected) lines with ',c' |
||
|
|
|
And yet another way:
|
|||
|
|
|
|
another way that might be easier for newcomers:
place the cursor on the first line (as I have attempted to depict above) and type the following (there is a space at the end): I//
press escape and use the digraph: j.j.
j is a motion command and . repeats the last editing command you made (in this case I// Much easier although not as cool as the other solutions here.) |
||
|
|
|
|
For commenting blocks of code, I like the NERD Commenter plugin. Select some text:
Comment:
Uncomment:
Or just toggle the comment state of a line or block:
|
||
|
|
