1 2 3 4 5 6 7 8
function! Comment() if (mode() == "n" ) execute "Commentary" else execute "'<,'>Commentary" endif endfunction vnoremap <silent> <space>/ :call Comment()