Created
February 26, 2013 15:44
-
-
Save kwstannard/5039445 to your computer and use it in GitHub Desktop.
common line block commenting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" block select commenting & uncommenting | |
au BufEnter *.rb map ,c :s/^/#/<CR>:nohlsearch<CR> | |
au BufEnter *.rb map ,u :s/^#//<CR>:nohlsearch<CR> | |
au BufEnter *.vim* map ,c :s/^/"/<CR>:nohlsearch<CR> | |
au BufEnter *.vim* map ,u :s/^"//<CR>:nohlsearch<CR> | |
au BufEnter *.haml* map ,c :s/^/-#/<CR>:nohlsearch<CR> | |
au BufEnter *.haml* map ,u :s/^-#//<CR>:nohlsearch<CR> | |
au BufEnter *.js map ,c :s/^/\/\//<CR>:nohlsearch<CR> | |
au BufEnter *.js map ,u :s/^\/\///<CR>:nohlsearch<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment