diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2023-09-02 14:52:43 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2023-09-02 14:52:43 -0700 |
| commit | 50a1a52ae350067568e2d6c080865d05d71152a8 (patch) | |
| tree | 98e218809761e2021c6effb65f629c29bf305021 /src/config.zig | |
| parent | 5e18f3c731d8d64ff0e3c5e03ada58306778f0b0 (diff) | |
core: add zoom keybinding for splits
Diffstat (limited to 'src/config.zig')
| -rw-r--r-- | src/config.zig | 6 |
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; |
