diff --git a/crates/recent_projects/src/recent_projects.rs b/crates/recent_projects/src/recent_projects.rs index 314eccccac..5abb0d55d2 100644 --- a/crates/recent_projects/src/recent_projects.rs +++ b/crates/recent_projects/src/recent_projects.rs @@ -146,11 +146,25 @@ impl EventEmitter for RecentProjectsDelegate {} impl PickerDelegate for RecentProjectsDelegate { type ListItem = ListItem; - fn placeholder_text(&self, _cx: &mut WindowContext) -> Arc { + fn placeholder_text(&self, cx: &mut WindowContext) -> Arc { + let action_binding_text = |action: &dyn gpui::Action| { + cx.bindings_for_action(action) + .into_iter() + .next() + .map(|binding| { + binding + .keystrokes() + .into_iter() + .map(ToString::to_string) + .collect::>() + .join(" ") + }) + .unwrap_or_else(|| format!("{action:?}")) + }; Arc::from(format!( - "`{:?}` reuses the window, `{:?}` opens in new", - menu::Confirm, - menu::SecondaryConfirm, + "{} reuses the window, {} opens a new one", + action_binding_text(&menu::Confirm), + action_binding_text(&menu::SecondaryConfirm), )) }