aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-11-02 20:18:22 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-11-02 20:18:22 +0000
commit86182f33c32d3154a4d0fc9544f59c5504918d80 (patch)
treecbd4f9ad501620574277d5dc031f79f3a21f76c6
parent1c853c68602cf713fe3de98ae2ea5a48a1120abc (diff)
downloadrtmux-86182f33c32d3154a4d0fc9544f59c5504918d80.tar.gz
rtmux-86182f33c32d3154a4d0fc9544f59c5504918d80.tar.bz2
rtmux-86182f33c32d3154a4d0fc9544f59c5504918d80.zip
Double the escape timer (the time after a \033 is received before tmux gives up
waiting to see if it is part of a key sequence and passes it through) to 500 ms, the previous setting was too fast. Suggested by naddy.
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 73ac9803..6902483c 100644
--- a/tmux.h
+++ b/tmux.h
@@ -60,7 +60,7 @@ extern char **environ;
#define NAME_INTERVAL 500
/* Escape timer period, in milliseconds. */
-#define ESCAPE_PERIOD 250
+#define ESCAPE_PERIOD 500
/* Maximum poll timeout (when attached). */
#define POLL_TIMEOUT 50