mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35: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 = [
|
matched_files = [
|
||||||
file
|
file
|
||||||
for file in self.coder.abs_fnames
|
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:
|
if not matched_files:
|
||||||
self.console.print(f"[red]No files matched '{word}'")
|
self.console.print(f"[red]No files matched '{word}'")
|
||||||
|
|
|
@ -70,8 +70,11 @@ def get_input(history_file, fnames, commands):
|
||||||
if not common_prefix.endswith(os.path.sep):
|
if not common_prefix.endswith(os.path.sep):
|
||||||
common_prefix += os.path.sep
|
common_prefix += os.path.sep
|
||||||
short_fnames = [fname.replace(common_prefix, "", 1) for fname in fnames]
|
short_fnames = [fname.replace(common_prefix, "", 1) for fname in fnames]
|
||||||
else:
|
elif len(fnames):
|
||||||
short_fnames = [os.path.basename(fnames[0])]
|
short_fnames = [os.path.basename(fnames[0])]
|
||||||
|
else:
|
||||||
|
short_fnames = []
|
||||||
|
|
||||||
show = " ".join(short_fnames)
|
show = " ".join(short_fnames)
|
||||||
if len(show) > 10:
|
if len(show) > 10:
|
||||||
show += "\n"
|
show += "\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue