From 768b0a79cb96cb75bd4c9ab7da3a374f3e543a94 Mon Sep 17 00:00:00 2001 From: rhodes-b <59537185+rhodes-b@users.noreply.github.com> Date: Sat, 8 Feb 2025 20:58:56 -0600 Subject: [PATCH] dont use shift+equal combo --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 9e6f17ef4..11cebb351 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -2622,7 +2622,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 = {} }, );