config: default search keybindings for Linux
parent
548d1f0300
commit
027e5d631a
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue