From 627f3430975db22582b88a7f528518d58bdff188 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 30 Jul 2026 15:28:17 -0700 Subject: [PATCH] build: helpgen needs terminal options --- src/terminal/cursor.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/terminal/cursor.zig b/src/terminal/cursor.zig index 8495f3043..f5f66075a 100644 --- a/src/terminal/cursor.zig +++ b/src/terminal/cursor.zig @@ -1,4 +1,4 @@ -const lib = @import("lib.zig"); +const lib = @import("../lib/main.zig"); /// The visual style of the cursor. Whether or not it blinks /// is determined by mode 12 (modes.zig). This mode is synchronized @@ -6,7 +6,7 @@ const lib = @import("lib.zig"); /// /// Bar, block, and underline correspond to DECSCUSR 5/6, 1/2, and 3/4. /// Hollow block is Ghostty-specific and is reported as DECSCUSR 1 or 2. -pub const Style = lib.Enum(lib.target, &.{ +pub const Style = lib.Enum(.zig, &.{ // DECSCUSR 5, 6 "bar",