linux: proper split shortcuts

This commit is contained in:
Mitchell Hashimoto
2023-03-17 14:27:49 -07:00
parent f79d9ba3a7
commit 8b9a1d8530

View File

@ -307,12 +307,12 @@ pub const Config = struct {
); );
try result.keybind.set.put( try result.keybind.set.put(
alloc, alloc,
.{ .key = .d, .mods = .{ .ctrl = true } }, .{ .key = .o, .mods = .{ .ctrl = true, .shift = true } },
.{ .new_split = .right }, .{ .new_split = .right },
); );
try result.keybind.set.put( try result.keybind.set.put(
alloc, alloc,
.{ .key = .d, .mods = .{ .ctrl = true, .shift = true } }, .{ .key = .e, .mods = .{ .ctrl = true, .shift = true } },
.{ .new_split = .down }, .{ .new_split = .down },
); );
try result.keybind.set.put( try result.keybind.set.put(