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.
Michael Davis 12 months ago
parent 44bddf5 · commit 9574e55
-rw-r--r--helix-term/src/commands/typed.rs2
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
},
},