From 0160f8a0d9291c5d3ce9537f83dcca21c35d6851 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 c6702bb74..c0b37c870 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -2555,6 +2555,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 } },