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?

link|improve this question

9  
"appending at the beginning" is called "prepending" – 0x89 Dec 21 '09 at 22:14
5  
LOL. "Appending at the beginning" is how I role. I corrected it. – Jordan Parmer Dec 22 '09 at 14:38
2  
I think you mean "roll" – Tim Apr 11 '11 at 17:46
3  
Well, there you have it...I'm hopeless. =) – Jordan Parmer Apr 12 '11 at 12:08
feedback

10 Answers

up vote 68 down vote accepted
  • Use Ctrl+V to select the first column of text in the lines you want to comment.
  • Then hit Shift+I and type the text you want to insert.
  • Then hit Esc, wait 1 second and the inserted text will appear on every line.
link|improve this answer
The only bummer with this is that it appears Ctrl+V is overridden in GVIM. – Jordan Parmer Oct 31 '08 at 13:04
Not for me (on linux) it's not – pixelbeat Oct 31 '08 at 13:07
2  
You can use Ctrl-Q as a replacement in gVim (as :help Ctrl-V explains) but you need to use hjkl to navigate in this mode rather than the arrow keys – Gareth Oct 31 '08 at 13:07
Sweet! Works like a champ! Thanks guys! – Jordan Parmer Oct 31 '08 at 13:10
2  
If your ctrl-v is overridden in windows gvim, you should edit the global vimrc to stop including mswin.vim. – graywh Jan 4 '09 at 21:20
show 2 more comments
feedback

This replaces the beginning of each line with "//":

:%s!^!//!

This replaces the beginning of each selected line (use visual mode to select) with "//":

:'<,'>s!^!//!
link|improve this answer
Thanks! Makes total sense. And removing the text goes as follows: '<,'>s!^//!! – Jordan Parmer Oct 31 '08 at 13:08
That's it, exactly. :-) – Tomalak Oct 31 '08 at 13:10
What is the meaning of the exclamation marks in the above answer? (:%s!^!//!) – HK_CH May 31 '11 at 8:57
7  
@HKK, normally one uses the forward slash character / as a delimeter for the search and replace command. In this case we are inserting a forward slash as part of the search and replace so we use an alternative delimeter, namely the exclamation character ! – cyber-monk Jun 7 '11 at 20:46
+1 This works in VsVim where (Ctrl+V) (Shiift+I) Esc doesn't. – Seth Reno Jan 24 at 15:03
show 1 more comment
feedback

And yet another way:

  • Move to the beginning of a line
  • enter Visual Block mode (CTRL-v)
  • select the lines you want (moving up/down with j/k, or jumping to a line with [line]G)
  • press I (that's capital i)
  • type the comment character(s)
  • press ESC
link|improve this answer
feedback

The general pattern for search and replace is:

:s/search/replace/

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:

:%s/search/replace/c

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):

:14,20s/^/#/

Inserts a '#' character at the start of lines 14-20

If you want to use another comment character (like //) then change your command delimiter:

:14,20s!^!//!

Inserts a '//' character sequence at the start of lines 14-20

Or you can always just escape the // characters like:

:14,20s/^/\/\//

Inserts a '//' character sequence at the start of lines 14-20

link|improve this answer
feedback

Another way that might be easier for newcomers:

 some█
 code
 here

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

 // █some
 code
 here

Press Esc to get back to command mode and use the digraph:

J . J .

 // some
 // code
 //█here

J is a motion command to go down one line and . repeats the last editing command you made.

link|improve this answer
feedback

If you want to get super fancy about it, put this in your .vimrc:

vmap \c :s!^!//!<CR>
vmap \u :s!^//!!<CR>

Then, whenever in visual mode, you can hit \c to comment the block and \u to uncomment it. Of course, you can change those shortcut keystrokes to whatever.

link|improve this answer
feedback

Yet another way:

:'<,'>g/^/norm I//

/^/ is just a dummy pattern to match every line. norm lets you run the normal-mode commands that follow. I// says to enter insert-mode while jumping the cursor to the beginning of the line, then insert the following text (two slashes).

:g is often handy for doing something complex on multiple lines, where you may want to jump between multiple modes, delete or add lines, move the cursor around, run a bunch of macros, etc. And you can tell it to operate only on lines that match a pattern.

link|improve this answer
actually the :g command isn't necessary. This will do: :'<,'>norm I// – Leonardo Constantino Dec 18 '08 at 19:56
And :s is better to use in this case, too. – graywh Jan 4 '09 at 21:21
feedback

I can recommend the EnhCommentify plugin.

eg. put this to your vimrc:

let maplocalleader=','
vmap <silent> <LocalLeader>c <Plug>VisualTraditional
nmap <silent> <LocalLeader>c <Plug>Traditional
let g:EnhCommentifyBindInInsert = 'No'
let g:EnhCommentifyMultiPartBlocks = 'Yes'
let g:EnhCommentifyPretty = 'Yes'
let g:EnhCommentifyRespectIndent = 'Yes'
let g:EnhCommentifyUseBlockIndent = 'Yes'

you can then comment/uncomment the (selected) lines with ',c'

link|improve this answer
1  
You can also use Nerd Commenter at vim.org/scripts/script.php?script_id=1218 – Nathan Fellman Mar 9 '09 at 10:59
feedback

:%s/^/#/

Adds # at the beginning of every line.

And people will stop bitching about your lack of properly commenting scripts

link|improve this answer
feedback

For commenting blocks of code, I like the NERD Commenter plugin.

Select some text:

Shift-V
...select the lines of text you want to comment....

Comment:

,cc

Uncomment:

,cu

Or just toggle the comment state of a line or block:

,c<space>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.