vote up 13 vote down star
7

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?

flag

"appending at the beginning" is called "prepending" – 0x89 yesterday
LOL. "Appending at the beginning" is how I role. I corrected it. – j0rd4n 13 hours ago

8 Answers

vote up 19 vote down check

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|flag
Thanks! Makes total sense. And removing the text goes as follows: '<,'>s!^//!! – j0rd4n Oct 31 '08 at 13:08
That's it, exactly. :-) – Tomalak Oct 31 '08 at 13:10
vote up 0 vote down

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|flag
vote up 1 vote down

another way that might be easier for newcomers:

 some█
 code
 here

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//

 // █some
 code
 here

press escape and use the digraph:

j.j.

 // some
 // code
 //█here

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

link|flag
vote up 5 vote down

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|flag
vote up 2 vote down

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|flag
You can also use Nerd Commenter at vim.org/scripts/script.php?script_id=1218/… – Nathan Fellman Mar 9 at 10:59
vote up 2 vote down

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|flag
actually the :g command isn't necessary. This will do: :'<,'>norm I// – Léo Dec 18 '08 at 19:56
And :s is better to use in this case, too. – graywh Jan 4 '09 at 21:21
vote up 3 vote down

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|flag
vote up 17 vote down
  • Use Ctrl+v to select the first column of text in the lines you want to comment.
  • Then hit '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|flag
The only bummer with this is that it appears Ctrl+V is overridden in GVIM. – j0rd4n Oct 31 '08 at 13:04
Not for me (on linux) it's not – pixelbeat Oct 31 '08 at 13:07
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! – j0rd4n Oct 31 '08 at 13:10
To be able to use the arrow keys in visual mode on windows just add "set keymodel-=stopsel" to your _vimrc. More at vim.wikia.com/wiki/… – agnul Oct 31 '08 at 23:12
show 1 more comment

Your Answer

Get an OpenID
or

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