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?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Perhaps you are defining the command before setting "mapleader" in your .vimrc?

From :help mapleader:

Note that the value of "mapleader" is used at the moment the mapping is
defined.  Changing "mapleader" after that has no effect for already defined
mappings.
link|improve this answer
Hey, that was the problem, thanks a lot! – Lucas Feb 28 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.