Showing posts with label vim. Show all posts
Showing posts with label vim. Show all posts

Wednesday, October 27, 2010

Ruby comments in vim

Put this in your .vimrc

- will now comment a visual block, _ will uncomment the entire visual block. Enjoy.
map _ :s/^\/\/\\|^--\\|^> \\|^[#"%!;]//:nohlsearch
map - :s/^/#/:nohlsearch