pull/9469/merge
Martin Emde 2025-12-16 14:39:49 -08:00 committed by GitHub
commit 8cb78a5e08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 8 deletions

View File

@ -5881,7 +5881,7 @@ pub const Keybinds = struct {
// set the expected keybind for the menu.
try self.set.put(
alloc,
.{ .key = .{ .physical = .equal }, .mods = inputpkg.ctrlOrSuper(.{}) },
.{ .key = .{ .unicode = '=' }, .mods = inputpkg.ctrlOrSuper(.{}) },
.{ .increase_font_size = 1 },
);
try self.set.put(
@ -6049,13 +6049,13 @@ pub const Keybinds = struct {
);
try self.set.putFlags(
alloc,
.{ .key = .{ .physical = .bracket_left }, .mods = .{ .ctrl = true, .super = true } },
.{ .key = .{ .unicode = '[' }, .mods = .{ .ctrl = true, .super = true } },
.{ .goto_split = .previous },
.{ .performable = true },
);
try self.set.putFlags(
alloc,
.{ .key = .{ .physical = .bracket_right }, .mods = .{ .ctrl = true, .super = true } },
.{ .key = .{ .unicode = ']' }, .mods = .{ .ctrl = true, .super = true } },
.{ .goto_split = .next },
.{ .performable = true },
);
@ -6375,12 +6375,12 @@ pub const Keybinds = struct {
);
try self.set.put(
alloc,
.{ .key = .{ .physical = .bracket_left }, .mods = .{ .super = true, .shift = true } },
.{ .key = .{ .unicode = '[' }, .mods = .{ .super = true, .shift = true } },
.{ .previous_tab = {} },
);
try self.set.put(
alloc,
.{ .key = .{ .physical = .bracket_right }, .mods = .{ .super = true, .shift = true } },
.{ .key = .{ .unicode = ']' }, .mods = .{ .super = true, .shift = true } },
.{ .next_tab = {} },
);
try self.set.put(
@ -6395,12 +6395,12 @@ pub const Keybinds = struct {
);
try self.set.put(
alloc,
.{ .key = .{ .physical = .bracket_left }, .mods = .{ .super = true } },
.{ .key = .{ .unicode = '[' }, .mods = .{ .super = true } },
.{ .goto_split = .previous },
);
try self.set.put(
alloc,
.{ .key = .{ .physical = .bracket_right }, .mods = .{ .super = true } },
.{ .key = .{ .unicode = ']' }, .mods = .{ .super = true } },
.{ .goto_split = .next },
);
try self.set.put(
@ -6445,7 +6445,7 @@ pub const Keybinds = struct {
);
try self.set.put(
alloc,
.{ .key = .{ .physical = .equal }, .mods = .{ .super = true, .ctrl = true } },
.{ .key = .{ .unicode = '=' }, .mods = .{ .super = true, .ctrl = true } },
.{ .equalize_splits = {} },
);