I tried to make vim command using Nerd Commenter plugin. Basically after some help here, it looks like:
command! -nargs=? -range=% Ct :normal <line1>ggv<line2>gg<Leader>c<space>
It works when I use :so .vimrc
, but when I restart vim it only performs 5ggv12gg without ,cspace. I guess it is because the ,cspace part is from plugin, but I wonder if there is some way to fix this. Anyone could help?