From b4ecd14c8ee1da7164d2c4b4ca30df83d2b59ed9 Mon Sep 17 00:00:00 2001 From: Takumi Matsuura Date: Thu, 30 Jan 2025 18:43:53 +0900 Subject: [PATCH] Show aliases in the command palette --- helix-term/src/commands.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index db912e6c0..eb1b59e71 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -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")