diff --git a/src/xterm.js b/src/xterm.js index 1d220652..fcb60bf5 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -1182,6 +1182,9 @@ Terminal.prototype.refresh = function(start, end, queue) { } } + if (ch_width === 2) { + out += ''; + } switch (ch) { case '&': out += '&'; @@ -1200,6 +1203,9 @@ Terminal.prototype.refresh = function(start, end, queue) { } break; } + if (ch_width === 2) { + out += ''; + } attr = data; }