Add 'command delete' default to macOS

This commit is contained in:
Koray08
2024-12-28 10:41:52 +02:00
committed by Jonathan Lopez
parent 3dee60ae49
commit ec3fe8d17f

View File

@ -2577,6 +2577,11 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config {
.{ .key = .{ .translated = .left }, .mods = .{ .super = true } }, .{ .key = .{ .translated = .left }, .mods = .{ .super = true } },
.{ .text = "\\x01" }, .{ .text = "\\x01" },
); );
try result.keybind.set.put(
alloc,
.{ .key = .{ .translated = .backspace }, .mods = .{ .super = true } },
.{ .esc = "w" },
);
try result.keybind.set.put( try result.keybind.set.put(
alloc, alloc,
.{ .key = .{ .translated = .left }, .mods = .{ .alt = true } }, .{ .key = .{ .translated = .left }, .mods = .{ .alt = true } },