diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-02 20:18:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-02 20:18:22 +0000 |
commit | 86182f33c32d3154a4d0fc9544f59c5504918d80 (patch) | |
tree | cbd4f9ad501620574277d5dc031f79f3a21f76c6 | |
parent | 1c853c68602cf713fe3de98ae2ea5a48a1120abc (diff) | |
download | rtmux-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |