From 3dee0eb56ec27ce55aff2c680cb16b95cfe07a25 Mon Sep 17 00:00:00 2001 From: Dabrien 'Dabe' Murphy Date: Fri, 9 Oct 2015 14:05:18 -0400 Subject: [PATCH] Fix weird wrapping with multiple tab stops (^I) --- src/term.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/term.js b/src/term.js index 626be53..db5ebb6 100644 --- a/src/term.js +++ b/src/term.js @@ -2771,8 +2771,8 @@ Terminal.prototype.resize = function(x, y) { } } } - this.setupStops(j); this.cols = x; + this.setupStops(j); // resize rows j = this.rows;