commenting.vim 285 B

123456
  1. " Toggle Commenting out lines with NERDCommenter
  2. nnoremap <silent> cc :call NERDComment("n", "toggle")<CR>
  3. vnoremap <silent> cc <Esc>:call NERDComment("x", "toggle")<CR>
  4. let g:pdv_template_dir = expand('~/.vim/plugged/pdv/templates')
  5. map <Leader>b :call pdv#DocumentCurrentLine()<CR>