tags:

views:

46

answers:

1

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.

+1  A: 

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
ZyX