diff options
| author | Nathaniel Braun <nathaniel.braun@gmail.com> | 2026-01-17 17:14:42 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-02-08 16:44:42 +0000 |
| commit | 5fec99caff3ac4f476bb88078ebf85fbecf6afb3 (patch) | |
| tree | a893eed1696beb2bef39cfdc50ae448be01afe21 /sys/teken/teken.c | |
| parent | 5beaa1ee7595ce4a09ac4827ec3e3e2aa13a9f67 (diff) | |
Diffstat (limited to 'sys/teken/teken.c')
| -rw-r--r-- | sys/teken/teken.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/teken/teken.c b/sys/teken/teken.c index b0161a2e3b20..a1522e00ecf7 100644 --- a/sys/teken/teken.c +++ b/sys/teken/teken.c @@ -703,6 +703,8 @@ static const char * const special_strings_cons25[] = { [TKEY_F7] = "\x1B[S", [TKEY_F8] = "\x1B[T", [TKEY_F9] = "\x1B[U", [TKEY_F10] = "\x1B[V", [TKEY_F11] = "\x1B[W", [TKEY_F12] = "\x1B[X", + + [TKEY_BTAB] = "\x1B[Z", }; static const char * const special_strings_ckeys[] = { @@ -726,6 +728,8 @@ static const char * const special_strings_normal[] = { [TKEY_F7] = "\x1B[18~", [TKEY_F8] = "\x1B[19~", [TKEY_F9] = "\x1B[20~", [TKEY_F10] = "\x1B[21~", [TKEY_F11] = "\x1B[23~", [TKEY_F12] = "\x1B[24~", + + [TKEY_BTAB] = "\x1B[Z", }; const char * |
