Created
July 7, 2013 17:47
-
-
Save brendonrapp/5944296 to your computer and use it in GitHub Desktop.
Fixes Powerline visual update delay when exiting from Insert mode
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
" make Esc happen without waiting for timeoutlen | |
" fixes Powerline delay | |
augroup FastEscape | |
autocmd! | |
au InsertEnter * set timeoutlen=0 | |
au InsertLeave * set timeoutlen=1000 | |
augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment