diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index b570e50bc..4317993cd 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -2613,7 +2613,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ fun: buffer_close, completer: CommandCompleter::all(completers::buffer), signature: Signature { - positionals: (0, Some(0)), + positionals: (0, None), ..Signature::DEFAULT }, }, @@ -2624,7 +2624,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ fun: force_buffer_close, completer: CommandCompleter::all(completers::buffer), signature: Signature { - positionals: (0, Some(0)), + positionals: (0, None), ..Signature::DEFAULT }, },