feat(renderer): render cells instead of raw u8 array contents
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 39s

This commit is contained in:
2024-11-12 19:11:19 +01:00
parent 510bf7d885
commit 07e4819ecd
6 changed files with 122 additions and 38 deletions

View File

@@ -8,7 +8,7 @@ const terminal = @import("../terminal.zig");
const isTaggedUnion = @import("../event.zig").isTaggedUnion;
const Error = @import("../event.zig").Error;
const Key = terminal.Key;
const Style = terminal.Style;
const Style = terminal.Cell.Style;
const log = std.log.scoped(.layout_framing);