]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Fix VPR behavior
authorDaniel Imms <daimms@microsoft.com>
Sat, 21 Jan 2017 07:14:08 +0000 (23:14 -0800)
committerDaniel Imms <daimms@microsoft.com>
Sat, 21 Jan 2017 07:14:08 +0000 (23:14 -0800)
Don't wrap cursor to column 0 after a VPR, fixes 1 test

src/InputHandler.ts

index 13a3145bd2bc27c5bb9c73e6f6f9b8734a23400c..bbf17b60bd52d94da40f7b81e92287773ae7b21c 100644 (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--;
+    }
   }
 
   /**