Logging is now toggleable and updates are postponed if socket is busy

This commit is contained in:
2017-08-22 23:05:21 +02:00
parent 0e73f57da1
commit 5c57ea3b28
10 changed files with 41 additions and 15 deletions
+2 -2
View File
@@ -2003,10 +2003,10 @@ var Input = (function() {
'down': ca('\x1bOB', '\x1b[B'),
'right': ca('\x1bOC', '\x1b[C'),
'left': ca('\x1bOD', '\x1b[D'),
'home': fa('\x1bOH', '\x1b[1~'),
'home': ca('\x1bOH', fa('\x1b[H', '\x1b[1~')),
'insert': '\x1b[2~',
'delete': '\x1b[3~',
'end': fa('\x1bOF', '\x1b[4~'),
'end': ca('\x1bOF', fa('\x1b[F', '\x1b[4~')),
'pageup': '\x1b[5~',
'pagedown': '\x1b[6~',
'f1': fa('\x1bOP', '\x1b[11~'),