mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 02:24:06 +00:00
Make C-] and other punctuation-based control key combinations work again.
ok nicm
This commit is contained in:
parent
fc09ec3025
commit
c919139433
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ key_string_lookup_string(const char *string)
|
|||
if (modifiers & KEYC_CTRL) {
|
||||
if (key >= 97 && key <= 122)
|
||||
key -= 96;
|
||||
else if (key >= 65 && key <= 90)
|
||||
else if (key >= 64 && key <= 95)
|
||||
key -= 64;
|
||||
else if (key == 32)
|
||||
key = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue