mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-23 22:04:59 +00:00
Changed command descriptions to be more specific.
This commit is contained in:
parent
605a5af522
commit
24593a345f
2 changed files with 12 additions and 11 deletions
|
@ -485,7 +485,7 @@ class Coder:
|
|||
return files
|
||||
|
||||
def cmd_add(self, args):
|
||||
"Add files to the chat"
|
||||
"Add matching files to the chat"
|
||||
|
||||
files = self.get_active_files()
|
||||
for word in args.split():
|
||||
|
@ -499,7 +499,7 @@ class Coder:
|
|||
self.console.print(f"[red]{matched_file} is already in the chat")
|
||||
|
||||
def cmd_drop(self, args):
|
||||
"Remove files from the chat"
|
||||
"Remove matching files from the chat"
|
||||
|
||||
for word in args.split():
|
||||
matched_files = [file for file in self.fnames if word in os.path.relpath(file, self.root)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue