mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
fix home/end on GNU/Linux
This commit is contained in:
parent
bedca2e7a9
commit
0e1e00e68b
@ -361,10 +361,10 @@ Interface.prototype._ttyWrite = function (b) {
|
||||
this.cursor++;
|
||||
this.output.write('\x1b[0C');
|
||||
}
|
||||
} else if (b[1] === 91 && b[2] === 72) { // home
|
||||
} else if ((b[1] === 91 || b[1] === 79) && b[2] === 72) { // home
|
||||
this.cursor = 0;
|
||||
this._refreshLine();
|
||||
} else if (b[1] === 91 && b[2] === 70) { // end
|
||||
} else if ((b[1] === 91 || b[1] === 79) && b[2] === 70) { // end
|
||||
this.cursor = this.line.length;
|
||||
this._refreshLine();
|
||||
} else if (b[1] === 91 && b[2] === 65) { // up arrow
|
||||
|
Loading…
Reference in New Issue
Block a user