From bc04f0f703d420b149fe528c1a56fa17c76c1cd4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 6 Mar 2013 21:36:26 +0200 Subject: [PATCH] .tmux.conf: Less time between commands in a command sequence Makes tmux feel more responsive, like when you enter copy mode you can immediately start paging up and down; before tmux would wait a second or so for other escape characters. --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 02f835e..337d994 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -76,6 +76,9 @@ bind '"' choose-window # use Escape for entering copy mode, like screen bind Escape copy-mode +# less time between commands in a command sequence +set -s escape-time 0 + # use vi-style key bindings set-option -g mode-keys vi