summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-11-02 20:18:23 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-11-02 20:18:23 +0000
commit1adab4b79b2c73776ff153349b667ef99008fbd8 (patch)
tree83df26e7328947d1ca4a0f1d4219cbd2dbf0ca14 /usr.bin/tmux
parentcf7136775f8306405b4939d51f3d3d23e2f0f2ab (diff)
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 'usr.bin/tmux')
-rw-r--r--usr.bin/tmux/tmux.h4
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