Skip to content

Instantly share code, notes, and snippets.

@charlesthomas
Created May 5, 2014 21:35
Show Gist options
  • Save charlesthomas/8c4e3f14ce9f09c1048d to your computer and use it in GitHub Desktop.
Save charlesthomas/8c4e3f14ce9f09c1048d to your computer and use it in GitHub Desktop.
Comment / Uncomment line in vim w/ctrl+c / ctrl + u
" Comment / Uncomment line in vim w/ctrl+c / ctrl + u
nmap <C-c> V: s/\v^(\s*)/\1# /g<CR>:nohls<CR>
vmap <C-c> : s/\v^(\s*)/\1# /g<CR>:nohls<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment