fix: enable_alt_scroll command description

This commit is contained in:
CJ van den Berg 2026-01-14 11:14:13 +01:00
parent 1dc0fcf9b5
commit 1f45b884b8
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -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;