diff --git a/src/common/row.ts b/src/common/row.ts index dd20620..48113a7 100644 --- a/src/common/row.ts +++ b/src/common/row.ts @@ -181,14 +181,10 @@ export class Row { let result = ''; for (let i = start; i < end; i++) { - // if (this.chars[i] === '\t') { - // result += ' '.repeat(SCROLL_TAB_SIZE); - // } else { result += highlightToColor(this.hl[i]); result += this.rchars[i]; result += Ansi.ResetFormatting; } - // } return result; }