Transform a char (\xf1) into what we meant (Ctrl+/, apparently).
If we try to send that, we get disconnected…
This commit is contained in:
parent
b50acaae0b
commit
a6699a1404
1 changed files with 3 additions and 0 deletions
|
@ -376,6 +376,9 @@ class Core(object):
|
|||
current = []
|
||||
for char in char_list:
|
||||
assert(len(char) > 0)
|
||||
# Transform that stupid char into what we actually meant
|
||||
if char == '\x1f':
|
||||
char = '^/'
|
||||
if len(char) == 1:
|
||||
current.append(char)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue