From ec9770c7c8a740a36f7db359da8af7cb55adb2c7 Mon Sep 17 00:00:00 2001 From: Gerard Hickey Date: Fri, 7 Aug 2026 21:14:16 -0400 Subject: [PATCH] fix: Add aliases for cmd to reduce ambiguity Signed-off-by: Gerard Hickey --- modules/commands/cmd_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands/cmd_command.py b/modules/commands/cmd_command.py index b45afe5..3bd70bd 100644 --- a/modules/commands/cmd_command.py +++ b/modules/commands/cmd_command.py @@ -15,7 +15,7 @@ class CmdCommand(BaseCommand): # Plugin metadata name = "cmd" - keywords = ['cmd', 'commands'] + keywords = ['cmd', 'cmds', 'command', 'commands'] description = "Lists available commands in compact format" category = "basic"