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?
|
|
|||||||||||||||||||
|
|
This replaces the beginning of each line with "//":
This replaces the beginning of each selected line (use visual mode to select) with "//":
|
|||||||||||||||
|
|
The general pattern for search and replace is:
Replaces 'search' with 'replace' for current line This command will replace each occurrence of 'search' with 'replace' for the current line only. The % is used to search over the whole file. To confirm each replacement interactively append a 'c' for confirm:
Interactive confirm replacing 'search' with 'replace' for the entire file Instead of the % character you can use a line number range (note that the '^' character is a special search character for the start of line):
Inserts a '#' character at the start of lines 14-20 If you want to use another comment character (like //) then change your command delimiter:
Inserts a '//' character sequence at the start of lines 14-20 Or you can always just escape the // characters like:
Inserts a '//' character sequence at the start of lines 14-20 |
|||||
|
|
And yet another way:
|
||||
|
|
|
Another way that might be easier for newcomers:
Place the cursor on the first line, e.g. by : 1 Enter and type the following to get into insert mode and add your text: I / / Space
Press Esc to get back to command mode and use the digraph: J . J .
J is a motion command to go down one line and . repeats the last editing command you made. |
||||
|
|
|
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' |
|||||
|
|
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:
|
|||
|
|
|
:%s/^/#/ Adds # at the beginning of every line. And people will stop bitching about your lack of properly commenting scripts |
|||
|
|