Add 'command delete' default to macOS

This commit is contained in:
Koray08
2024-12-28 10:41:52 +02:00
parent 6cbd69da78
commit 0160f8a0d9

View File

@ -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 } },