mirror of
https://github.com/tmate-io/tmate.git
synced 2025-02-25 14:50:57 +01:00
Don't omit half the default table (!= not ==).
This commit is contained in:
parent
10db7ec51b
commit
3e270af17a
@ -360,7 +360,7 @@ tty_keys_build(struct tty *tty)
|
||||
tdkc = &tty_default_code_keys[i];
|
||||
|
||||
s = tty_term_string(tty->term, tdkc->code);
|
||||
if (*s == '\0')
|
||||
if (*s != '\0')
|
||||
tty_keys_add(tty, s, tdkc->key);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user