Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this Ruby code, where some lines are commented out...

class Search < ActiveRecord::Migration
  def self.up
    # create_table :searches do |t|
    #   t.integer :user_id
    #   t.string :name
    #   t.string :all_of
    #   t.string :any_of
    #   t.string :none_of
    #   t.string :exact_phrase
    # 
    #   t.timestamps
    # end
  end

  def self.down
    # drop_table :searches
  end
end

Say I want to uncomment all the lines in the first def ... end section. What's an efficient way to do that in Vim?

In general, I'm looking for an easy and fluid way to comment and uncomment lines. Here I'm dealing with Ruby code, but it could be JavaScript (//) or Haml (-#).

share|improve this question

13 Answers

up vote 24 down vote accepted

I use the NERD Commenter script. It lets you easily comment, uncomment or toggle comments in your code.

share|improve this answer

For those tasks I use most of the time block selection.

Put your cursor on the first # character, press CtrlV (or CtrlQ for gVim), and go down until the last commented line and press x, that will delete all the # characters vertically.

For commenting a block of text is almost the same, go to the first line you want to comment, press CtrlV, then select until the last line, and press I#Esc, that will insert a # character on all selected lines.

share|improve this answer
27  
By default it's CTRL+V. The windows version of gvim uses Ctrl+Q because Ctrl+V is already used for paste. – R. Martinho Fernandes Nov 4 '09 at 21:40
@Samaursa - This does work better for non-indented code. +1 – Marcin Feb 16 '12 at 17:31
Note the uncommenting only works for single-character comments – amindfv Dec 10 '12 at 19:03
1  
@amindfv Ctrl+V, n (where n is num lines - 1), j, n (where n num number of length of comment character sequence - 1), l, x. – michael.bartnett Dec 15 '12 at 21:09
@michael.bartnett: Nice! Also, for anyone else: note that you can move the cursor with arrow keys instead of (n-1)-l – amindfv Dec 16 '12 at 3:52

Here is how I do it:

  1. Go to first character on the first line you want to comment out.

  2. Hit Ctrl+q in GVIM or Ctrl+v in VIM, then go down to select first character on the lines to comment out.

  3. Then press c, and add the comment character.

Uncommenting works the same way, just type a space instead of the comment character.

share|improve this answer
12  
c deletes the first character as well. CMS's answer has it right i.e. pressing I then typing out the comment character(s) and then Esc (this is on windows vim) – Samaursa Feb 16 '12 at 17:08

Use Control-V to select rectangles of text: go to the first # character, type Ctrl+V, move right once, and then down, up to the end of the comments. Now type x: you're deleting all the # characters followed by one space.

share|improve this answer

I have the following in my .vimrc:

" Commenting blocks of code.
autocmd FileType c,cpp,java,scala let b:comment_leader = '// '
autocmd FileType sh,ruby,python   let b:comment_leader = '# '
autocmd FileType conf,fstab       let b:comment_leader = '# '
autocmd FileType tex              let b:comment_leader = '% '
autocmd FileType mail             let b:comment_leader = '> '
autocmd FileType vim              let b:comment_leader = '" '
noremap <silent> ,cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR>
noremap <silent> ,cu :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR>

Works both in normal and visual mode.

(I stole it from some website many years ago so I can't completely explain how it works anymore :).)

share|improve this answer

I use EnhancedCommentify. It comments everything I needed (programming languages, scripts, config files). I use it with visual-mode bindings. Simply select text you want to comment and press co/cc/cd.

vmap co :call EnhancedCommentify('','guess')<CR>
vmap cc :call EnhancedCommentify('','comment')<CR>
vmap cd :call EnhancedCommentify('','decomment')<CR>
share|improve this answer

To comment out blocks in vim:

  • hit ctrl+v (visual block mode)
  • use the down arrow keys to select the lines you want (it won't highlight everything)
  • Shift+i (capital I)
  • insert the text you want, i.e. '% '
  • Press ESC

Give it a second to work.

share|improve this answer

Here is a section of my .vimrc:

"insert and remove comments in visual and normal mode
vmap ,ic :s/^/#/g<CR>:let @/ = ""<CR>
map  ,ic :s/^/#/g<CR>:let @/ = ""<CR>
vmap ,rc :s/^#//g<CR>:let @/ = ""<CR>
map  ,rc :s/^#//g<CR>:let @/ = ""<CR>

In normal and in visual mode, this lets me press ,ic to insert comments and,rc to remove comments.

share|improve this answer
This is very helpful for a beginner how to learn writing own .vimrc . – coolesting Oct 6 '11 at 2:44

I mark the first and last lines (ma and mb), and then do :'a,'bs/^# //

share|improve this answer

If you already know the line numbers, then n,ms/# // would work.

share|improve this answer
really that should probably be: n,ms/^\s.#// Because you might have leading white space and might not follow the hash with one – Skip Huffman Jan 8 at 14:25

I like to use the tcomment plugin: http://www.vim.org/scripts/script.php?script%5Fid=1173

I have mapped gc and gcc to comment a line or a highlighted block of code. It detects the file type and works really well.

share|improve this answer

This simple snippet is from my .vimrc:

function! CommentToggle()
    execute ':silent! s/\([^ ]\)/\/\/ \1/'
    execute ':silent! s/^\( *\)\/\/ \/\/ /\1/'
endfunction

map <F7> :call CommentToggle()<CR>

It's for //-Comments, but you can adapt it easily for other characters. You could use autocmd to set a leader as jqno suggested.

This is a very simple and efficient way working with ranges and visual mode naturally.

share|improve this answer
"comment (cc) and uncomment (cu) code 
noremap   <silent> cc      :s,^\(\s*\)[^# \t]\@=,\1# ,e<CR>:nohls<CR>zvj
noremap   <silent> cu      :s,^\(\s*\)# \s\@!,\1,e<CR>:nohls<CR>zvj

You can comment/uncomment single or multiple lines with #. To do multiple lines, select the lines then type cc/cu shortcut, or type a number then cc/cu, e.g. 7cc will comment 7 lines from the cursor.

I got the orignal code from the person on What's the most elegant way of commenting / uncommenting blocks of ruby code in Vim? and made some small changes (changed shortcut keys, and added a space after the #).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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