in emacs evil mode ctrl-[ puts you in normal mode. but there is an irritating delay of about a .5 seconds. For instance if I'm in insert mode and want to move up 2 lines I would do ctrl-[ k k but this doesn't work cause I hit the k to quickly, emacs stays in insert mode. How can I make the transistion to normal mode instantaneous.
1 Answers
4
votes
Please check out: https://bitbucket.org/lyro/evil/issue/69/delay-between-esc-or-c-and-modeswitch
For me the delay was caused by tmux and set -s escape-time 0
fixed the issue.
emacs -Q
, manually enablingevil-mode
, and see if the delay is still present? – ChrisEsc
key instead ofC-[
, do you still see the delay? – Chris