Add initial support for search by keystroke to keybinding editor (#34274)

This PR adds preliminary support for searching keybindings by keystrokes
in the keybinding editor.

Release Notes:

- N/A
This commit is contained in:
Anthony Eid 2025-07-11 09:29:29 -04:00 committed by GitHub
parent b4cbea50bb
commit 7eb739d489
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 219 additions and 42 deletions

View file

@ -1112,7 +1112,10 @@
"context": "KeymapEditor",
"use_key_equivalents": true,
"bindings": {
"ctrl-f": "search::FocusSearch"
"ctrl-f": "search::FocusSearch",
"alt-find": "keymap_editor::ToggleKeystrokeSearch",
"alt-ctrl-f": "keymap_editor::ToggleKeystrokeSearch",
"alt-c": "keymap_editor::ToggleConflictFilter"
}
}
]

View file

@ -1211,7 +1211,8 @@
"context": "KeymapEditor",
"use_key_equivalents": true,
"bindings": {
"cmd-f": "search::FocusSearch"
"cmd-alt-f": "keymap_editor::ToggleKeystrokeSearch",
"cmd-alt-c": "keymap_editor::ToggleConflictFilter"
}
}
]