From c169bdf4ba84fa2af9da7c42b459b1748bb81d4d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 10 May 2023 11:21:46 -0700 Subject: [PATCH] wip: Changed cmd_help and cmd_ls to include command descriptions. --- aider/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 98e79e14c..783e6905c 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -3,9 +3,11 @@ class Commands: self.console = console def cmd_help(self, args): - print("help") + "Show help about all commands" + pass def cmd_ls(self, args): + "List files and show their chat status" print("ls") def get_commands(self):