small fixes & added doc directory

This commit is contained in:
2017-08-21 22:39:59 +02:00
parent 09cc66c75c
commit 3b8cfd41e3
6 changed files with 2263 additions and 18 deletions
+2 -2
View File
@@ -446,10 +446,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~'),