mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
bugfixes
This commit is contained in:
parent
f8939c55a5
commit
b74779d1b7
2 changed files with 5 additions and 2 deletions
|
@ -166,7 +166,7 @@ class Commands:
|
|||
matched_files = [
|
||||
file
|
||||
for file in self.coder.abs_fnames
|
||||
if word in os.path.relpath(file, self.coder.root)
|
||||
if word.lower() in os.path.relpath(file, self.coder.root).lower()
|
||||
]
|
||||
if not matched_files:
|
||||
self.console.print(f"[red]No files matched '{word}'")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue