summaryrefslogtreecommitdiff
path: root/src/config.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2023-09-02 14:52:43 -0700
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2023-09-02 14:52:43 -0700
commit50a1a52ae350067568e2d6c080865d05d71152a8 (patch)
tree98e218809761e2021c6effb65f629c29bf305021 /src/config.zig
parent5e18f3c731d8d64ff0e3c5e03ada58306778f0b0 (diff)
core: add zoom keybinding for splits
Diffstat (limited to 'src/config.zig')
-rw-r--r--src/config.zig6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.zig b/src/config.zig
index bd826c5d6..c73b288ca 100644
--- a/src/config.zig
+++ b/src/config.zig
@@ -682,6 +682,12 @@ pub const Config = struct {
.{ .key = .right, .mods = .{ .super = true, .alt = true } },
.{ .goto_split = .right },
);
+
+ try result.keybind.set.put(
+ alloc,
+ .{ .key = .equal, .mods = .{ .super = true, .shift = true } },
+ .{ .zoom_split = {} },
+ );
}
return result;