From e3eac7e84b5ee614679d758d325f909e996b59c8 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 2 Dec 2025 18:46:44 +0100 Subject: [PATCH] fix: make helix save command (w) description shorter for better fuzzy matching --- src/tui/mode/helix.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/mode/helix.zig b/src/tui/mode/helix.zig index 4ecaca1..48de130 100644 --- a/src/tui/mode/helix.zig +++ b/src/tui/mode/helix.zig @@ -34,7 +34,7 @@ const cmds_ = struct { pub fn w(_: *void, _: Ctx) Result { try cmd("save_file", .{}); } - pub const w_meta: Meta = .{ .description = "w (write/save file)" }; + pub const w_meta: Meta = .{ .description = "w (save)" }; pub fn q(_: *void, _: Ctx) Result { try cmd("quit", .{});