From a3a8fba6e26a81fa54decf50c6050e6141cca21c Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 29 Feb 2024 15:48:56 -0500 Subject: [PATCH] Clean up some commented code --- src/common/row.ts | 4 ---- 1 file changed, 4 deletions(-) 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; }