From 9574e551cf8ea4d868a8c102647fcfe0d41496df Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Fri, 14 Mar 2025 10:36:01 -0400 Subject: [PATCH] commands: Allow zero or one arguments in `:reflow` `:reflow` can optionally be passed a width. --- helix-term/src/commands/typed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 9661689cf..bcb6e5437 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 }, },