Show aliases in the command palette

This commit is contained in:
Takumi Matsuura 2025-01-30 18:43:53 +09:00
parent c9dc940428
commit b4ecd14c8e

View file

@ -3324,7 +3324,18 @@ pub fn command_palette(cx: &mut Context) {
let columns = [
ui::PickerColumn::new("name", |item, _| match item {
MappableCommand::Typable { name, .. } => format!(":{name}").into(),
MappableCommand::Typable { name, .. } => {
let aliases = typed::TYPABLE_COMMAND_MAP
.get(name.as_str())
.unwrap()
.aliases
.join(" ");
if !aliases.is_empty() {
format!(":{name} ({aliases})").into()
} else {
format!(":{name}").into()
}
}
MappableCommand::Static { name, .. } => (*name).into(),
MappableCommand::Macro { .. } => {
unreachable!("macros aren't included in the command palette")