mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
Updated /help messages
This commit is contained in:
parent
d868e96467
commit
1fe48fd161
1 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue