From ec3fe8d17f99f4be1ff4ec7f6a7e6a067bf214c6 Mon Sep 17 00:00:00 2001 From: Koray08 Date: Sat, 28 Dec 2024 10:41:52 +0200 Subject: [PATCH] Add 'command delete' default to macOS --- src/config/Config.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 1cc2cd775..ceb2ff440 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -2577,6 +2577,11 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config { .{ .key = .{ .translated = .left }, .mods = .{ .super = true } }, .{ .text = "\\x01" }, ); + try result.keybind.set.put( + alloc, + .{ .key = .{ .translated = .backspace }, .mods = .{ .super = true } }, + .{ .esc = "w" }, + ); try result.keybind.set.put( alloc, .{ .key = .{ .translated = .left }, .mods = .{ .alt = true } },