mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-02 02:17:44 +03:00
commands: Allow zero or one arguments in :reflow
`:reflow` can optionally be passed a width.
This commit is contained in:
parent
44bddf51b7
commit
9574e551cf
1 changed files with 1 additions and 1 deletions
|
@ -3368,7 +3368,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
|
|||
fun: reflow,
|
||||
completer: CommandCompleter::none(),
|
||||
signature: Signature {
|
||||
positionals: (0, Some(0)),
|
||||
positionals: (0, Some(1)),
|
||||
..Signature::DEFAULT
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue