Merge c91503206d into a4cb73db84
commit
035f892902
|
|
@ -5884,6 +5884,13 @@ pub const Keybinds = struct {
|
|||
.{ .key = .{ .physical = .equal }, .mods = inputpkg.ctrlOrSuper(.{}) },
|
||||
.{ .increase_font_size = 1 },
|
||||
);
|
||||
// This key-binding make the intuitive keybinding work for layouts that
|
||||
// achieves plus by using the shift key (like UK)
|
||||
try self.set.put(
|
||||
alloc,
|
||||
.{ .key = .{ .translated = .plus }, .mods = inputpkg.ctrlOrSuper(.{ .shift = true }) },
|
||||
.{ .increase_font_size = 1 },
|
||||
);
|
||||
try self.set.put(
|
||||
alloc,
|
||||
.{ .key = .{ .unicode = '+' }, .mods = inputpkg.ctrlOrSuper(.{}) },
|
||||
|
|
|
|||
Loading…
Reference in New Issue