diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-05 07:23:23 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-05 07:23:23 +0100 |
commit | f2951bd4a560692048e68bf29a5b0a288346a7d4 (patch) | |
tree | d17ab15dcc8845db27337437572f3b81bfb32f9f | |
parent | 8da45730880467ea5defe010c58ac1ec7ca74c4e (diff) | |
download | rtmux-f2951bd4a560692048e68bf29a5b0a288346a7d4.tar.gz rtmux-f2951bd4a560692048e68bf29a5b0a288346a7d4.tar.bz2 rtmux-f2951bd4a560692048e68bf29a5b0a288346a7d4.zip |
Remove old shift function keys which interfere with xterm keys now. GitHub
issue 2696.
-rw-r--r-- | input-keys.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/input-keys.c b/input-keys.c index ffd2201c..be83600e 100644 --- a/input-keys.c +++ b/input-keys.c @@ -94,30 +94,6 @@ static struct input_key_entry input_key_defaults[] = { { .key = KEYC_F12, .data = "\033[24~" }, - { .key = KEYC_F1|KEYC_SHIFT, - .data = "\033[25~" - }, - { .key = KEYC_F2|KEYC_SHIFT, - .data = "\033[26~" - }, - { .key = KEYC_F3|KEYC_SHIFT, - .data = "\033[28~" - }, - { .key = KEYC_F4|KEYC_SHIFT, - .data = "\033[29~" - }, - { .key = KEYC_F5|KEYC_SHIFT, - .data = "\033[31~" - }, - { .key = KEYC_F6|KEYC_SHIFT, - .data = "\033[32~" - }, - { .key = KEYC_F7|KEYC_SHIFT, - .data = "\033[33~" - }, - { .key = KEYC_F8|KEYC_SHIFT, - .data = "\033[34~" - }, { .key = KEYC_IC, .data = "\033[2~" }, |