From 5adb4b7413e294d80494a1dea6294e68dd0cd49c Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 25 Mar 2025 15:13:26 +0530 Subject: [PATCH] Allow `:theme` to show current theme (#13192) Updates the signature for the command to take 0 arguments. This probably regressed during 0efa8207d86d39f9bdd54e72117ae9c8817e2cc6. --- 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 e1c09a04d..4e912127c 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 }, },