From 1f45b884b89e3482ae969a7a2aef33ca10535b8b Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 14 Jan 2026 11:14:13 +0100 Subject: [PATCH] fix: enable_alt_scroll command description --- src/tui/editor.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/editor.zig b/src/tui/editor.zig index 37b6a18..0842b33 100644 --- a/src/tui/editor.zig +++ b/src/tui/editor.zig @@ -5106,7 +5106,7 @@ pub const Editor = struct { pub fn enable_alt_scroll(self: *Self, _: Context) Result { self.alt_scroll = true; } - pub const enable_alt_scroll_meta: Meta = .{ .description = "Enable horizontal scroll mode" }; + pub const enable_alt_scroll_meta: Meta = .{ .description = "Enable alternate scroll mode" }; pub fn disable_alt_scroll(self: *Self, _: Context) Result { self.alt_scroll = false;