diff options
author | 2011-06-23 10:02:49 +0000 | |
---|---|---|
committer | 2011-06-23 10:02:49 +0000 | |
commit | daa929a1bc87587891112ffabae4d8adba7ba9dd (patch) | |
tree | 818a9932f3b4875ffa5306de6a42cffd4d882163 /usr.bin/tmux/xterm-keys.c | |
parent | rename sandbox.h => ssh-sandbox.h to make things easier for portable (diff) | |
download | wireguard-openbsd-daa929a1bc87587891112ffabae4d8adba7ba9dd.tar.xz wireguard-openbsd-daa929a1bc87587891112ffabae4d8adba7ba9dd.zip |
Add a couple of extra xterm-style keys that gnome terminal provides,
from Dustin Kirkland.
Diffstat (limited to 'usr.bin/tmux/xterm-keys.c')
-rw-r--r-- | usr.bin/tmux/xterm-keys.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.bin/tmux/xterm-keys.c b/usr.bin/tmux/xterm-keys.c index 6fd63996c4b..6980d36cbf0 100644 --- a/usr.bin/tmux/xterm-keys.c +++ b/usr.bin/tmux/xterm-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xterm-keys.c,v 1.9 2011/03/27 20:31:25 nicm Exp $ */ +/* $OpenBSD: xterm-keys.c,v 1.10 2011/06/23 10:02:49 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -36,8 +36,8 @@ * * Rather than parsing them, just match against a table. * - * There are two forms for F1-F4 (\\033O_P or \\033[1;_P). We accept either but - * always output the latter (it comes first in the table). + * There are three forms for F1-F4 (\\033O_P and \\033O1;_P and \\033[1;_P). + * We accept any but always output the latter (it comes first in the table). */ int xterm_keys_match(const char *, const char *, size_t); @@ -50,12 +50,16 @@ struct xterm_keys_entry { const struct xterm_keys_entry xterm_keys_table[] = { { KEYC_F1, "\033[1;_P" }, + { KEYC_F1, "\033O1;_P" }, { KEYC_F1, "\033O_P" }, { KEYC_F2, "\033[1;_Q" }, + { KEYC_F2, "\033O1;_Q" }, { KEYC_F2, "\033O_Q" }, { KEYC_F3, "\033[1;_R" }, + { KEYC_F3, "\033O1;_R" }, { KEYC_F3, "\033O_R" }, { KEYC_F4, "\033[1;_S" }, + { KEYC_F4, "\033O1;_S" }, { KEYC_F4, "\033O_S" }, { KEYC_F5, "\033[15;_~" }, { KEYC_F6, "\033[17;_~" }, |