mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +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 = [
|
let columns = [
|
||||||
ui::PickerColumn::new("name", |item, _| match item {
|
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::Static { name, .. } => (*name).into(),
|
||||||
MappableCommand::Macro { .. } => {
|
MappableCommand::Macro { .. } => {
|
||||||
unreachable!("macros aren't included in the command palette")
|
unreachable!("macros aren't included in the command palette")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue