config: default search keybindings for Linux

pull/9756/head
Mitchell Hashimoto 2025-11-29 14:59:50 -08:00
parent 548d1f0300
commit 027e5d631a
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 14 additions and 0 deletions

View File

@ -6098,6 +6098,20 @@ pub const Keybinds = struct {
.{ .jump_to_prompt = 1 }, .{ .jump_to_prompt = 1 },
); );
// Search
try self.set.putFlags(
alloc,
.{ .key = .{ .unicode = 'f' }, .mods = .{ .ctrl = true, .shift = true } },
.start_search,
.{ .performable = true },
);
try self.set.putFlags(
alloc,
.{ .key = .{ .physical = .escape } },
.end_search,
.{ .performable = true },
);
// Inspector, matching Chromium // Inspector, matching Chromium
try self.set.put( try self.set.put(
alloc, alloc,