Major updates/cleanup.

This commit is contained in:
2026-09-08 07:00:13 +01:00
parent 0df03f418a
commit 0760209417
23 changed files with 668 additions and 441 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ IO::~IO() {
}
void IO::apply(const io::Token::Kind &t) {
if (bed.suppress_mode)
if (!bed.color_mode)
return;
write("\x1b[0m");
const auto &hl = bed.theme.get(t);
@@ -60,7 +60,7 @@ void IO::apply(const io::Token::Kind &t) {
}
void IO::reset() {
if (bed.suppress_mode)
if (!bed.color_mode)
return;
write("\x1b[0m");
}