From 1fe48fd1618afdfd80959b9e6470e1ac88d9242b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 3 Nov 2023 09:23:04 -0700 Subject: [PATCH] Updated /help messages --- aider/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/commands.py b/aider/commands.py index 79a1b33eb..e99840dc9 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -274,7 +274,7 @@ class Commands: return res def cmd_add(self, args): - "Add matching files to the chat session using glob patterns" + "Add files to the chat so GPT can edit them or review them in detail" added_fnames = [] git_added = [] @@ -355,7 +355,7 @@ class Commands: yield Completion(fname, start_position=-len(partial)) def cmd_drop(self, args): - "Remove matching files from the chat session" + "Remove files from the chat session to free up context space" if not args.strip(): self.io.tool_output("Dropping all files from the chat session.") @@ -428,7 +428,7 @@ class Commands: sys.exit() def cmd_ls(self, args): - "List all known files and those included in the chat session" + "List all known files and indicate which are included in the chat session" files = self.coder.get_all_relative_files()