From c16dbc01f0ffcc5ff61156dcf9a0d17eb5a5f3ef Mon Sep 17 00:00:00 2001 From: Ryan Rotter Date: Tue, 31 Dec 2024 22:59:32 -0500 Subject: [PATCH] correct default keybinding cmd+backspace for macOS cmd+backspace=text:\x15 --- 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 91c07cc78..f03a0d726 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -2603,7 +2603,7 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config { try result.keybind.set.put( alloc, .{ .key = .{ .translated = .backspace }, .mods = .{ .super = true } }, - .{ .esc = "\x15" }, + .{ .text = "\\x15" }, ); try result.keybind.set.put( alloc,