Skip to content

Commit

Permalink
Updated /help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Nov 3, 2023
1 parent d868e96 commit 1fe48fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aider/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def glob_filtered_to_repo(self, pattern):
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 = []
Expand Down Expand Up @@ -355,7 +355,7 @@ def completions_drop(self, partial):
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.")
Expand Down Expand Up @@ -428,7 +428,7 @@ def cmd_exit(self, args):
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()

Expand Down

0 comments on commit 1fe48fd

Please sign in to comment.