aboutsummaryrefslogtreecommitdiff
path: root/key-string.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-02-17 22:56:12 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-02-17 22:56:12 +0000
commit8df3ec612a8c496fc2c975b8241f4e95faef5715 (patch)
tree4c5d07f4a76f653b21b810cbcf87498b64ddfd0f /key-string.c
parent4c91c153cb087e1256578da1e53f002edefc9958 (diff)
downloadrtmux-8df3ec612a8c496fc2c975b8241f4e95faef5715.tar.gz
rtmux-8df3ec612a8c496fc2c975b8241f4e95faef5715.tar.bz2
rtmux-8df3ec612a8c496fc2c975b8241f4e95faef5715.zip
In terminals with XT, turn on modifyOtherKeys=1 with the escape sequence and
handle the most common set. Pass them through if xterm-keys is on.
Diffstat (limited to 'key-string.c')
-rw-r--r--key-string.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/key-string.c b/key-string.c
index df177399..797eedd5 100644
--- a/key-string.c
+++ b/key-string.c
@@ -136,9 +136,10 @@ key_string_get_modifiers(const char **string)
int
key_string_lookup_string(const char *string)
{
- int key, modifiers;
- u_short u;
- int size;
+ static const char *other = "!#()+,-.0123456789:;<=>?'\r\t";
+ int key, modifiers;
+ u_short u;
+ int size;
/* Is this a hexadecimal value? */
if (string[0] == '0' && string[1] == 'x') {
@@ -170,7 +171,7 @@ key_string_lookup_string(const char *string)
}
/* Convert the standard control keys. */
- if (key < KEYC_BASE && (modifiers & KEYC_CTRL)) {
+ if (key < KEYC_BASE && (modifiers & KEYC_CTRL) && !strchr(other, key)) {
if (key >= 97 && key <= 122)
key -= 96;
else if (key >= 64 && key <= 95)
@@ -193,7 +194,7 @@ key_string_lookup_key(int key)
{
static char out[24];
char tmp[8];
- u_int i;
+ u_int i;
*out = '\0';