Use project search action with the default keybinding in app menus (#10618)
Fixes https://github.com/zed-industries/zed/issues/10611 Zed has `workspace::NewSearch` (without a default keybinding) and `workspace::DeploySearch` (with the default keybinding for its `DeploySearch::find()` form). Use the one with the keybinding, as it's the whole point of the menu. Release Notes: - Fixed "Find In Project" app menu item having no keybinding ([10611](https://github.com/zed-industries/zed/issues/10611))
This commit is contained in:
parent
e34c443331
commit
d49271a112
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ pub fn app_menus() -> Vec<Menu<'static>> {
|
|||
MenuItem::os_action("Paste", editor::actions::Paste, OsAction::Paste),
|
||||
MenuItem::separator(),
|
||||
MenuItem::action("Find", search::buffer_search::Deploy::find()),
|
||||
MenuItem::action("Find In Project", workspace::NewSearch),
|
||||
MenuItem::action("Find In Project", workspace::DeploySearch::find()),
|
||||
MenuItem::separator(),
|
||||
MenuItem::action(
|
||||
"Toggle Line Comment",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue