Skip to content

Commit

Permalink
macOS: Cmd + Shift + Plus should increase font size too
Browse files Browse the repository at this point in the history
  • Loading branch information
curtbushko committed Dec 31, 2024
1 parent a857d56 commit ed2c4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/Config.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2091,7 +2091,7 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config {
// set the expected keybind for the menu.
try result.keybind.set.put(
alloc,
.{ .key = .{ .translated = .plus }, .mods = inputpkg.ctrlOrSuper(.{}) },
.{ .key = .{ .translated = .plus }, .mods = inputpkg.ctrlOrSuper(.{ .shift = true }) },
.{ .increase_font_size = 1 },
);
try result.keybind.set.put(
Expand Down

0 comments on commit ed2c4bf

Please sign in to comment.