From 5047f559d9c820faed5ecee1370e22ad9b846d44 Mon Sep 17 00:00:00 2001 From: Dabrien 'Dabe' Murphy Date: Fri, 9 Oct 2015 14:34:30 -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 f542dd0..5e4eb00 100644 --- a/src/term.js +++ b/src/term.js @@ -2948,9 +2948,9 @@ Terminal.prototype.resize = function(x, y) { } } } - this.setupStops(j); this.cols = x; this.columns = x; + this.setupStops(j); // resize rows j = this.rows;