Comment out disabling of VT100 line wrapping for now - causes too much trouble with actual esc seq in place

This commit is contained in:
Bryan Ashby 2016-06-26 21:23:36 -06:00
parent 0ea0f62b2c
commit 3955d5539f
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ function ansiQueryTermSizeIfNeeded(client, cb) {
function prepareTerminal(term) { function prepareTerminal(term) {
term.rawWrite(ansi.normal()); term.rawWrite(ansi.normal());
term.rawWrite(ansi.disableVT100LineWrapping()); //term.rawWrite(ansi.disableVT100LineWrapping());
// :TODO: set xterm stuff -- see x84/others // :TODO: set xterm stuff -- see x84/others
} }