use hypthens instead of underscores for typable commands

pull/10905/head
Sam Vente 6 months ago
parent 90748f7032
commit c8153f4064
No known key found for this signature in database

@ -2789,14 +2789,14 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
signature: CommandSignature::none(), signature: CommandSignature::none(),
}, },
TypableCommand { TypableCommand {
name: "goto_mark", name: "goto-mark",
aliases: &[], aliases: &[],
doc: "Go to the selection saved in a register. Register can be provided as argument or selected register else ^ will be used", doc: "Go to the selection saved in a register. Register can be provided as argument or selected register else ^ will be used",
fun: goto_mark, fun: goto_mark,
signature: CommandSignature::positional(&[completers::register]), signature: CommandSignature::positional(&[completers::register]),
}, },
TypableCommand { TypableCommand {
name: "register_mark", name: "register-mark",
aliases: &[], aliases: &[],
doc: "Save current selection into a register. Register can be provided as argument or selected register else ^ will be used", doc: "Save current selection into a register. Register can be provided as argument or selected register else ^ will be used",
fun: register_mark, fun: register_mark,

Loading…
Cancel
Save