]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Fix default 'wraparoundMode' value for 'Soft reset'() XTERM terminal.
authorAleksandr Andrienko <aandrienko@codenvy.com>
Fri, 10 Feb 2017 14:50:16 +0000 (16:50 +0200)
committerAleksandr Andrienko <aandrienko@codenvy.com>
Fri, 10 Feb 2017 14:52:19 +0000 (16:52 +0200)
src/InputHandler.ts

index 10e72e9da72d233a282f155cc0fef52cc261f91e..37f41f344489f40391f15b6ed6314bb261657578 100644 (file)
@@ -1394,7 +1394,7 @@ export class InputHandler implements IInputHandler {
     this._terminal.cursorHidden = false;
     this._terminal.insertMode = false;
     this._terminal.originMode = false;
-    this._terminal.wraparoundMode = false; // autowrap
+    this._terminal.wraparoundMode = true;  // defaults: xterm - true, vt100 - false
     this._terminal.applicationKeypad = false; // ?
     this._terminal.viewport.syncScrollArea();
     this._terminal.applicationCursor = false;