Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

One of the things that bugs me the most about VIM is having to move while in insert mode. With any other programs I can use the arrow keys to move around but with VIM I have learned to use h/j/k/l and in order to enter that mode I have to press escape then I again, Is there a quicker way to do that?

share|improve this question
1  
One of the general tenants of vim is to not navigate in insert mode. It's common to map caps lock to ESC to make it easier to exit insert mode. Another general vim tenant is to be in insert mode as little as possible. – Matt Greer Jan 5 '12 at 21:22
Please see "Misconception #1" at viemu.com/a-why-vi-vim.html – Greg Hewgill Jan 5 '12 at 21:27
I think you just should train the muscle memory =) – ck3g Jan 5 '12 at 21:57
what do you mean ck3g? do you mean just train it to use the ESC key? – Helmut Granda Jan 5 '12 at 22:19
possible duplicate of Vim: Traversing text in Insert mode – Andreas Grech Apr 22 at 8:16

2 Answers

up vote 3 down vote accepted

I have my escape button mapped to jj.

imap jj <ESC>

That way when I want to enter normal mode fast I double tap jj and my fingers are in a good position to start navigating.

It may seem awkward to begin with but once you get muscle memory it will be like lightening.

share|improve this answer
1  
If you need to insert 'jj', do you just do it slowly? – Matt Greer Jan 5 '12 at 21:25
Yes that is correct, it's very rare the 2 letters are required together but when they are I have to press slow – zode64 Jan 5 '12 at 21:27
I do have jj already mapped, I guess I didnt think about it much. Also I found this answer which helps even further: stackoverflow.com/questions/1737163/… – Helmut Granda Jan 5 '12 at 21:30

use CTRL-[

here's a suggestion (probably from Bram) in the insert.txt helpfile for :h i_CTRL-[

"Note: If your key is hard to hit on your keyboard, train yourself to use CTRL-[."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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