XVim claims to read ~/.xvimrc but I am not seeing any effect. Has anyone gotten this to work?
Here is an example of my .xvimrc:
nmap jj <esc>
I have also tried :
imap jj <esc>
XVim claims to read ~/.xvimrc but I am not seeing any effect. Has anyone gotten this to work?
Here is an example of my .xvimrc:
nmap jj <esc>
I have also tried :
imap jj <esc>
Not an answer for your specific case, but if your .xvimrc has:
inoremap jk <Esc>
This wasn't working for me, and in fact had the unpleasant side effect of slowing down the j key badly when just trying to move the cursor down. Switching to:
imap jk <Esc>
did fix it for me (Xcode 4.6.3).
It works for me with
imap jj <Esc>
using Xcode 4.6.2 and XVim dc470f5 (which is about a month old).
Maybe the Esc is case sensitive?