Fix style in readline
This commit is contained in:
parent
0fd1656d63
commit
65f2e72d77
@ -256,9 +256,8 @@ Interface.prototype._ttyWrite = function (b) {
|
|||||||
} else if (b[1] === 91 && b[2] === 66) { // down arrow
|
} else if (b[1] === 91 && b[2] === 66) { // down arrow
|
||||||
this._historyNext();
|
this._historyNext();
|
||||||
} else if (b[1] === 91 && b[2] === 51 && this.cursor < this.line.length) { // delete right
|
} 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 = this.line.slice(0, this.cursor) +
|
||||||
+ this.line.slice(this.cursor+1, this.line.length)
|
this.line.slice(this.cursor+1, this.line.length);
|
||||||
;
|
|
||||||
this._refreshLine();
|
this._refreshLine();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user