Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 668 Bytes

remove-the-delay-on-the-escape-key.md

File metadata and controls

19 lines (14 loc) · 668 Bytes

Remove The Delay On The Escape Key

By default, tmux imposes a 500ms delay on presses of the escape key. This is in case the escape key is used as part of a tmux key binding.

I don't use the escape key for any of my tmux key bindings, but I do use the escape key quite in other contexts, like Vim.

The 500ms delay on the escape key being registered in contexts like Vim is annoying at best. This delay can be removed by overriding the escape-time option.

set -sg escape-time 0

Adding this line to your ~/.tmux.conf file will set the delay to 0ms. The -s and -g flags set the option for the server and the global server contexts respectively.