From fea85193a3c809ff7668c0447c57eb98cd62c089 Mon Sep 17 00:00:00 2001 From: lidia9 Date: Tue, 20 May 2025 15:19:17 +0200 Subject: [PATCH] /h for /help only, not for history --- src/cai/repl/commands/history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cai/repl/commands/history.py b/src/cai/repl/commands/history.py index f0610f3a..09fc76d9 100644 --- a/src/cai/repl/commands/history.py +++ b/src/cai/repl/commands/history.py @@ -22,7 +22,7 @@ class HistoryCommand(Command): super().__init__( name="/history", description="Display the conversation history", - aliases=["/h"] + aliases=["/his"] ) def handle(self, args: Optional[List[str]] = None,