Skip to content

Instantly share code, notes, and snippets.

@DineshReddyK
Created July 25, 2014 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DineshReddyK/9479857d06085041afd7 to your computer and use it in GitHub Desktop.
Save DineshReddyK/9479857d06085041afd7 to your computer and use it in GitHub Desktop.
Vim Auto Comment
augroup commentcmds
autocmd!
autocmd FileType python nnoremap <buffer> ,c I#<esc>
autocmd FileType sh nnoremap <buffer> ,c I#<esc>
autocmd FileType cpp nnoremap <buffer> ,c I//<esc>
autocmd FileType c nnoremap <buffer> ,c I//<esc>
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment