Merge pull request #20 from akalipetis/issue/19

Pressing Alt + ←/→ does not interfere now with browser
This commit is contained in:
Paris Kasidiaris
2015-01-28 11:52:55 +02:00
+2
View File
@@ -2201,6 +2201,7 @@
// left-arrow
case 37:
if (ev.altKey) {
this.cancel(ev, true);
key = '\x1bb' // Jump a word back
break;
} else if (this.applicationCursor) {
@@ -2212,6 +2213,7 @@
// right-arrow
case 39:
if (ev.altKey) {
this.cancel(ev, true);
key = '\x1bf' // Jump a word forward
break;
} else if (this.applicationCursor) {