On Wed, Jul 16, 2008 at 01:10, Ian Kelling <[EMAIL PROTECTED]> wrote: > For 4, you can do something similar, like :inoremap <ESC> <ESC>l
I've been using something like that for some time: inoremap <Esc> <Right><Esc> This works in GVim but breaks extended keys in Vim (they send <Esc> as the first keycode). It seems that Vim doesn't wait a bit to see if another keycode follows, but rather immediately applies the mapping. This does not happen without the mapping, because in this case Vim correctly waits a bit to see whether it's <Esc> or an extended keycode. Not sure whether this a bug or something desirable though... --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
