mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 04:35:00 +00:00
Reordered the output of files in chat and repo to improve readability.
This commit is contained in:
parent
e695a1131a
commit
65f50cf6d0
1 changed files with 6 additions and 6 deletions
|
@ -613,14 +613,14 @@ class Commands:
|
|||
self.io.tool_output("\nNo files in chat or git repo.")
|
||||
return
|
||||
|
||||
if chat_files:
|
||||
self.io.tool_output("Files in chat:\n")
|
||||
for file in chat_files:
|
||||
if other_files:
|
||||
self.io.tool_output("Repo files not in the chat:\n")
|
||||
for file in other_files:
|
||||
self.io.tool_output(f" {file}")
|
||||
|
||||
if other_files:
|
||||
self.io.tool_output("\nRepo files not in the chat:\n")
|
||||
for file in other_files:
|
||||
if chat_files:
|
||||
self.io.tool_output("\nFiles in chat:\n")
|
||||
for file in chat_files:
|
||||
self.io.tool_output(f" {file}")
|
||||
|
||||
def cmd_help(self, args):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue