fix: add command description for goto_line_vim

This commit is contained in:
CJ van den Berg 2026-02-19 09:49:03 +01:00
parent 5bc7f4c2e8
commit db60fa1686
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -6286,7 +6286,7 @@ pub const Editor = struct {
self.clamp(); self.clamp();
try self.send_editor_jump_destination(); try self.send_editor_jump_destination();
} }
pub const goto_line_vim_meta: Meta = .{ .arguments = &.{.integer} }; pub const goto_line_vim_meta: Meta = .{ .description = "Goto line (vim)", .arguments = &.{.integer} };
pub fn select_to_line_vim(self: *Self, ctx: Context) Result { pub fn select_to_line_vim(self: *Self, ctx: Context) Result {
try self.send_editor_jump_source(); try self.send_editor_jump_source();