Unnamed repository; edit this file 'description' to name the repository.
commands: Allow zero or one arguments in `:reflow`
`:reflow` can optionally be passed a width.
| -rw-r--r-- | helix-term/src/commands/typed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 9661689c..bcb6e543 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -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 }, }, |