summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhodes-b <59537185+rhodes-b@users.noreply.github.com>2025-02-08 20:58:56 -0600
committerMitchell Hashimoto <m@mitchellh.com>2025-03-23 14:19:38 -0700
commit92bd6b6244076ce5167009ad85a1e3e362d8d5a1 (patch)
tree7ff5891875c1e5db703d8440cbddf390b3aa1c7f
parentccf72dfbf7a0eaeef1e9b05928d071b12bb0bbe8 (diff)
dont use shift+equal combo
-rw-r--r--src/config/Config.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/Config.zig b/src/config/Config.zig
index 681984c7d..2c4836689 100644
--- a/src/config/Config.zig
+++ b/src/config/Config.zig
@@ -2578,7 +2578,7 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config {
);
try result.keybind.set.put(
alloc,
- .{ .key = .{ .translated = .equal }, .mods = .{ .super = true, .ctrl = true, .shift = true } },
+ .{ .key = .{ .translated = .plus }, .mods = .{ .super = true, .ctrl = true, .shift = true } },
.{ .equalize_splits = {} },
);