-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Esc to abort is slower than ctrl-c (is this due to esc keys / arrows)? #2052
Comments
You can set
Not just arrow keys. Mouse clicks and scrolls, ALT-* keys, page-up, page-down, home, end, delete, and function keys all start with an ESC. Small delays are known to cause problems on some platforms. (So why |
Oh interesting... Thanks @junegunn! |
I’ve tried setting |
Same issue as @tomstuart here. Adding export ESCDELAY="1" to .bash_profile does not make the ESC abort from CTRL-T as quick as CTRL-C from CLI. It waits for one second before proceeding. Within fzf.vim, the wait is about 3 seconds. |
man fzf
)Info
Problem / Steps to reproduce
Esc to abort is slower than ctrl+c. This is especially noticeable in fzf.vim, but I assume is actually related to the delay caused by up+down arrow mappings relying on the terminal sending esc keys? If so, is there a way to disable esc keys (similar to
:set noesckeys
in vim)? The reason I ask is that I never use my arrows, so it would be nice to get rid of the delay if possible. Thoughts on this? 🙂The text was updated successfully, but these errors were encountered: