fix: make helix save command (w) description shorter for better fuzzy matching

This commit is contained in:
CJ van den Berg 2025-12-02 18:46:44 +01:00
parent 01dfde1646
commit e3eac7e84b
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -34,7 +34,7 @@ const cmds_ = struct {
pub fn w(_: *void, _: Ctx) Result { pub fn w(_: *void, _: Ctx) Result {
try cmd("save_file", .{}); 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 { pub fn q(_: *void, _: Ctx) Result {
try cmd("quit", .{}); try cmd("quit", .{});