Change action name
This commit is contained in:
parent
50f721ebd4
commit
ec4c2f5fd0
3 changed files with 3 additions and 3 deletions
|
@ -149,7 +149,7 @@ fn git_panel_context_menu(
|
|||
StashAll.boxed_clone(),
|
||||
)
|
||||
.action_disabled_when(!state.has_stash_items, "Stash Pop", StashPop.boxed_clone())
|
||||
.action("View Stash", zed_actions::git::StashEntries.boxed_clone())
|
||||
.action("View Stash", zed_actions::git::ViewStash.boxed_clone())
|
||||
.separator()
|
||||
.action("Open Diff", project_diff::Diff.boxed_clone())
|
||||
.separator()
|
||||
|
|
|
@ -33,7 +33,7 @@ pub fn register(workspace: &mut Workspace) {
|
|||
|
||||
pub fn open(
|
||||
workspace: &mut Workspace,
|
||||
_: &zed_actions::git::StashEntries,
|
||||
_: &zed_actions::git::ViewStash,
|
||||
window: &mut Window,
|
||||
cx: &mut Context<Workspace>,
|
||||
) {
|
||||
|
|
|
@ -177,7 +177,7 @@ pub mod git {
|
|||
#[action(deprecated_aliases = ["branches::OpenRecent"])]
|
||||
Branch,
|
||||
/// Opens the git stash selector.
|
||||
StashEntries
|
||||
ViewStash
|
||||
]
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue