Comment on Learn Vim ProgressivelyparentComments−yogsotothOP15yI have the even faster jk mapped to ESC. And if you want to type jk in your text you just have to- type j - wait 1 second - type k.−billybob15yVery nice!For those wondering how to do this, you can try it out with:imap jk <esc>(imap means "use this mapping when I'm in insert mode".)If you like it, add everything but the : to your .vimrc−masterj15yI find kj easier to type, since it's an outward muscle movement.Warning: If you do this you will wind up typing those characters by memory nearly everywhere.kj
Comments
I have the even faster jk mapped to ESC. And if you want to type jk in your text you just have to
- type j - wait 1 second - type k.
Very nice!
For those wondering how to do this, you can try it out with
:imap jk <esc>
(imap means "use this mapping when I'm in insert mode".)
If you like it, add everything but the : to your .vimrc
I find kj easier to type, since it's an outward muscle movement.
Warning: If you do this you will wind up typing those characters by memory nearly everywhere.kj