From 92bd6b6244076ce5167009ad85a1e3e362d8d5a1 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 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 = {} }, );