title_bar: Remove dependency on vcs_menu (#21011)

This PR removes the `title_bar` crate's dependency on the `vcs_menu`.

The `vcs_menu::OpenRecent` action now resides at
`zed_actions::branches::OpenRecent`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-11-21 14:56:02 -05:00 committed by GitHub
parent 6b2f1cc543
commit 4c7b48b35d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 15 additions and 12 deletions

View file

@ -44,6 +44,12 @@ actions!(
]
);
pub mod branches {
use gpui::actions;
actions!(branches, [OpenRecent]);
}
pub mod command_palette {
use gpui::actions;