Updated /help messages

This commit is contained in:
Paul Gauthier 2023-11-03 09:23:04 -07:00
parent d868e96467
commit 1fe48fd161

View file

@ -274,7 +274,7 @@ class Commands:
return res return res
def cmd_add(self, args): 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 = [] added_fnames = []
git_added = [] git_added = []
@ -355,7 +355,7 @@ class Commands:
yield Completion(fname, start_position=-len(partial)) yield Completion(fname, start_position=-len(partial))
def cmd_drop(self, args): 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(): if not args.strip():
self.io.tool_output("Dropping all files from the chat session.") self.io.tool_output("Dropping all files from the chat session.")
@ -428,7 +428,7 @@ class Commands:
sys.exit() sys.exit()
def cmd_ls(self, args): 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() files = self.coder.get_all_relative_files()