From 3955d5539fb47b7d92ac52fb5a812fe515a0cce9 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 26 Jun 2016 21:23:36 -0600 Subject: [PATCH] Comment out disabling of VT100 line wrapping for now - causes too much trouble with actual esc seq in place --- core/connect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/connect.js b/core/connect.js index 67ab1c1f..2698fd44 100644 --- a/core/connect.js +++ b/core/connect.js @@ -72,7 +72,7 @@ function ansiQueryTermSizeIfNeeded(client, cb) { function prepareTerminal(term) { term.rawWrite(ansi.normal()); - term.rawWrite(ansi.disableVT100LineWrapping()); + //term.rawWrite(ansi.disableVT100LineWrapping()); // :TODO: set xterm stuff -- see x84/others }