Fix home/end

This commit is contained in:
Florian Mounier
2016-01-18 10:05:50 +01:00
parent efb019ed00
commit 056fbc02b1
4 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1468,14 +1468,14 @@
key = "\x1bOH";
break;
}
key = "\x1bOH";
key = "\x1b[H";
break;
case 35:
if (this.applicationKeypad) {
key = "\x1bOF";
break;
}
key = "\x1bOF";
key = "\x1b[F";
break;
case 33:
if (ev.shiftKey) {

File diff suppressed because one or more lines are too long

View File

@@ -1358,14 +1358,14 @@ class Terminal
if @applicationKeypad
key = "\x1bOH"
break
key = "\x1bOH"
key = "\x1b[H"
# end
when 35
if @applicationKeypad
key = "\x1bOF"
break
key = "\x1bOF"
key = "\x1b[F"
# page up
when 33