mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Show aliases in the command palette
This commit is contained in:
parent
c9dc940428
commit
b4ecd14c8e
1 changed files with 12 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue