mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Use typable command doc when keybind provides no arguments
This improves the display of the keymap popup for example, so that if you bind a key like `C-x = ":buffer-close"` under the `<space>` menu, the infobox shows "Close the current buffer." rather than `:buffer-close []`.
This commit is contained in:
parent
8439ce5683
commit
e9c16b7fc5
1 changed files with 11 additions and 4 deletions
|
@ -633,10 +633,17 @@ impl std::str::FromStr for MappableCommand {
|
||||||
.collect::<Vec<String>>();
|
.collect::<Vec<String>>();
|
||||||
typed::TYPABLE_COMMAND_MAP
|
typed::TYPABLE_COMMAND_MAP
|
||||||
.get(name)
|
.get(name)
|
||||||
.map(|cmd| MappableCommand::Typable {
|
.map(|cmd| {
|
||||||
name: cmd.name.to_owned(),
|
let doc = if args.is_empty() {
|
||||||
doc: format!(":{} {:?}", cmd.name, args),
|
cmd.doc.to_string()
|
||||||
args,
|
} else {
|
||||||
|
format!(":{} {:?}", cmd.name, args)
|
||||||
|
};
|
||||||
|
MappableCommand::Typable {
|
||||||
|
name: cmd.name.to_owned(),
|
||||||
|
doc,
|
||||||
|
args,
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.ok_or_else(|| anyhow!("No TypableCommand named '{}'", s))
|
.ok_or_else(|| anyhow!("No TypableCommand named '{}'", s))
|
||||||
} else if let Some(suffix) = s.strip_prefix('@') {
|
} else if let Some(suffix) = s.strip_prefix('@') {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue