summaryrefslogtreecommitdiffstats
path: root/tty-keys.c
diff options
context:
space:
mode:
authornicm <nicm>2022-11-01 09:54:13 +0000
committernicm <nicm>2022-11-01 09:54:13 +0000
commit2d08235987efa1e2f9c932c4a5c8a0200b4804c1 (patch)
treeb3f4e2021a7ddbe7935e036833bac32114bb54d9 /tty-keys.c
parent22910451162c5c1ffe5505ca7c9b1b8cc99ba187 (diff)
Add modified Tab key sequences, from Aaron Jensen, GitHub issue 3368.
Diffstat (limited to 'tty-keys.c')
-rw-r--r--tty-keys.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tty-keys.c b/tty-keys.c
index bb9ec231..db82754f 100644
--- a/tty-keys.c
+++ b/tty-keys.c
@@ -208,6 +208,9 @@ static const struct tty_default_key_raw tty_default_raw_keys[] = {
/* Paste keys. */
{ "\033[200~", KEYC_PASTE_START },
{ "\033[201~", KEYC_PASTE_END },
+
+ /* Extended keys. */
+ { "\033[1;5Z", '\011'|KEYC_CTRL|KEYC_SHIFT|KEYC_EXTENDED },
};
/* Default xterm keys. */
@@ -974,7 +977,7 @@ tty_keys_extended_key(struct tty *tty, const char *buf, size_t len,
log_debug("%s: extended key %.*s is %llx (%s)", c->name,
(int)*size, buf, nkey, key_string_lookup_key(nkey, 1));
}
- *key = nkey;
+ *key = nkey|KEYC_EXTENDED;
return (0);
}