Skip to content

Commit

Permalink
Add command names to command palette (#4071)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuid64 authored Oct 3, 2022
1 parent 93f26a3 commit 576c34f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2427,11 +2427,11 @@ impl ui::menu::Item for MappableCommand {

match self {
MappableCommand::Typable { doc, name, .. } => match keymap.get(name as &String) {
Some(bindings) => format!("{} ({})", doc, fmt_binding(bindings)).into(),
Some(bindings) => format!("{} ({}) [{}]", doc, fmt_binding(bindings), name).into(),
None => doc.as_str().into(),
},
MappableCommand::Static { doc, name, .. } => match keymap.get(*name) {
Some(bindings) => format!("{} ({})", doc, fmt_binding(bindings)).into(),
Some(bindings) => format!("{} ({}) [{}]", doc, fmt_binding(bindings), name).into(),
None => (*doc).into(),
},
}
Expand Down

0 comments on commit 576c34f

Please sign in to comment.