diff options
author | 2009-11-02 20:18:22 +0000 | |
---|---|---|
committer | 2009-11-02 20:18:22 +0000 | |
commit | bb2f750c1dadf2dd13659e9546ef581df27bfdff (patch) | |
tree | c98dd7ea332290260c294334538725b84c92391f | |
parent | we have closefrom(2), so use it; ok deraadt@ tedu@ (diff) | |
download | wireguard-openbsd-bb2f750c1dadf2dd13659e9546ef581df27bfdff.tar.xz wireguard-openbsd-bb2f750c1dadf2dd13659e9546ef581df27bfdff.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-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index f7bf6992b0d..83f24a4bbe1 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.153 2009/11/01 23:20:37 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.154 2009/11/02 20:18:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 |