diff --git a/src/config/Config.zig b/src/config/Config.zig index 31d1f4f1b..4727da832 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -2503,10 +2503,22 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config { ); try result.keybind.set.put( alloc, - .{ .key = .{ .translated = .equal }, .mods = .{ .shift = true, .alt = true } }, + .{ .key = .{ .translated = .equal }, .mods = .{ .super = true, .ctrl = true } }, .{ .equalize_splits = {} }, ); + // Jump to prompt, matches Terminal.app + try result.keybind.set.put( + alloc, + .{ .key = .{ .translated = .up }, .mods = .{ .super = true } }, + .{ .jump_to_prompt = -1 }, + ); + try result.keybind.set.put( + alloc, + .{ .key = .{ .translated = .down }, .mods = .{ .super = true } }, + .{ .jump_to_prompt = 1 }, + ); + // Inspector, matching Chromium try result.keybind.set.put( alloc,