Support DEL in the REPL.
This commit is contained in:
Родитель
02746eddd6
Коммит
0fd1656d63
|
@ -255,6 +255,11 @@ Interface.prototype._ttyWrite = function (b) {
|
|||
this._historyPrev();
|
||||
} else if (b[1] === 91 && b[2] === 66) { // down arrow
|
||||
this._historyNext();
|
||||
} else if (b[1] === 91 && b[2] === 51 && this.cursor < this.line.length) { // delete right
|
||||
this.line = this.line.slice(0, this.cursor)
|
||||
+ this.line.slice(this.cursor+1, this.line.length)
|
||||
;
|
||||
this._refreshLine();
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче