Skip to content

Instantly share code, notes, and snippets.

@kwstannard
Created February 26, 2013 15:44
Show Gist options
  • Save kwstannard/5039445 to your computer and use it in GitHub Desktop.
Save kwstannard/5039445 to your computer and use it in GitHub Desktop.
common line block commenting
" 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