Merge ea7b7f59fd into 50cb1bafd7
commit
8cb78a5e08
|
|
@ -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 = {} },
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue