blob: c9637e69a551b6fefd19d3ad40a983c31c2d457c (
plain)
1
2
3
4
5
6
7
8
9
|
function! Comment()
if (mode() == "n" )
execute "Commentary"
else
execute "'<,'>Commentary"
endif
endfunction
vnoremap <silent> <space>/ :call Comment()
autocmd filetype javascript.jsx setlocal commentstring={/*\ %s\ */}
|