From 799e4bca505142d71864b61e40385e916d80e9bc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 30 Oct 2025 10:07:42 -0700 Subject: [PATCH] example/zig-formatter: fix build for new palette API --- example/zig-formatter/src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/zig-formatter/src/main.zig b/example/zig-formatter/src/main.zig index 87a8e4915..085b6d116 100644 --- a/example/zig-formatter/src/main.zig +++ b/example/zig-formatter/src/main.zig @@ -31,7 +31,7 @@ pub fn main() !void { // Use TerminalFormatter to emit HTML const formatter: ghostty_vt.formatter.TerminalFormatter = .init(&t, .{ .emit = .html, - .palette = &t.color_palette.colors, + .palette = &t.colors.palette.current, }); // Write to stdout