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.
pull/1/head
Nicholas Marriott 2009-11-02 20:18:22 +00:00
parent 1c853c6860
commit 86182f33c3
1 changed files with 1 additions and 1 deletions

2
tmux.h
View File

@ -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