diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-04 22:37:18 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-04 22:37:18 +0000 |
commit | f3b4b60aa8ac8cfcfdee50b2ac0baf506addde97 (patch) | |
tree | ff49784e4269d02f0b0fc2ddc9638a6ae00204d5 /tmux.h | |
parent | 012e7106dea75316d536747a655024743be0a5d4 (diff) | |
download | rtmux-f3b4b60aa8ac8cfcfdee50b2ac0baf506addde97.tar.gz rtmux-f3b4b60aa8ac8cfcfdee50b2ac0baf506addde97.tar.bz2 rtmux-f3b4b60aa8ac8cfcfdee50b2ac0baf506addde97.zip |
Sync OpenBSD patchset 480:
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.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.491 2009-11-02 21:38:27 tcunha Exp $ */ +/* $Id: tmux.h,v 1.492 2009-11-04 22:37:18 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -58,7 +58,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 |