Last active
August 29, 2015 13:58
-
-
Save zeekay/bc1b2c4f187f82393c47 to your computer and use it in GitHub Desktop.
Prevent lag when hitting escape in Vim,
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
augroup fastescape | |
au! | |
set notimeout | |
set ttimeout | |
set timeoutlen=10 | |
au InsertEnter * set timeout | |
au InsertLeave * set notimeout | |
augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment