Clean up some commented code
timw4mail/scroll/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2024-02-29 15:48:56 -05:00
parent 33f19ddec1
commit a3a8fba6e2
1 changed files with 0 additions and 4 deletions

View File

@ -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;
}