Reputation: 17332
I'm trying to get up and running using project.vim but for some reason, none of the keybinding requiring a capital letter seem to be working.
For example \C
, which should create new project fold recursively, just acts like normal C, but \c
operates as expected. Same thing with \R
and \r
.
I'm using MacVim with Vim 7.3 (on a Mac, obviously). Is there some kind of keybinding voodoo that I need to implement first?
Thanks.
Upvotes: 0
Views: 424
Reputation: 53644
Since normal \C
works fine, the problem must be with timeoutlen
option (The time in milliseconds that is waited for a key code or mapped key sequence to complete.). To restore it to reasonable values, use
set timeout timeoutlen=5000 ttimeoutlen=100
Upvotes: 1