From b084889782d1e282dc776cd21deec3b9262fa4cc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 25 Nov 2025 12:11:40 -0800 Subject: [PATCH] config: cmd+f on macos start_search default --- src/config/Config.zig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 753a2d697..04b2c19e3 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -6403,6 +6403,14 @@ pub const Keybinds = struct { .{ .jump_to_prompt = 1 }, ); + // Search + try self.set.putFlags( + alloc, + .{ .key = .{ .unicode = 'f' }, .mods = .{ .super = true } }, + .start_search, + .{ .performable = true }, + ); + // Inspector, matching Chromium try self.set.put( alloc,