Unnamed repository; edit this file 'description' to name the repository.
Allow `:theme` to show current theme (#13192)
Updates the signature for the command to take 0 arguments. This probably regressed during 0efa8207d86d39f9bdd54e72117ae9c8817e2cc6.
Nick 11 months ago
parent 13b2dc3 · commit 5adb4b7
-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 e1c09a04..4e912127 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -2924,7 +2924,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
fun: theme,
completer: CommandCompleter::positional(&[completers::theme]),
signature: Signature {
- positionals: (1, Some(1)),
+ positionals: (0, Some(1)),
..Signature::DEFAULT
},
},