Fix VPR behavior

Don't wrap cursor to column 0 after a VPR, fixes 1 test
This commit is contained in:
Daniel Imms
2017-01-20 23:14:08 -08:00
parent 74c3a4a6f7
commit 2aa7608ac0
+3
View File
@@ -701,6 +701,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--;
}
}
/**