Fix CUD behavior

Don't wrap cursor to column 0 after a CUD, fixes 1 test
This commit is contained in:
Daniel Imms
2017-01-20 23:12:54 -08:00
parent d30fb89fde
commit 74c3a4a6f7
+3
View File
@@ -220,6 +220,9 @@ export class InputHandler implements IInputHandler {
if (this._terminal.y >= this._terminal.rows) {
this._terminal.y = this._terminal.rows - 1;
}
if (this._terminal.x >= this._terminal.cols) {
this._terminal.x--;
}
}
/**