fix: integer arguments to goto command

This commit is contained in:
CJ van den Berg 2025-11-05 21:56:18 +01:00
parent f0e2ef442f
commit 406e4bba45
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -1170,7 +1170,7 @@ const cmds = struct {
}
pub const goto_meta: Meta = .{
.description = "Goto line",
.arguments = &.{ .integer, .integer },
.arguments = &.{.integer},
};
pub fn goto_offset(self: *Self, ctx: Ctx) Result {