mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
feat: mark which of the default_config_files exist in the verbose output
This commit is contained in:
parent
e55513bd79
commit
cdab3fd17f
1 changed files with 2 additions and 1 deletions
|
@ -330,7 +330,8 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
|
||||||
if args.verbose:
|
if args.verbose:
|
||||||
print("Config files search order, if no --config:")
|
print("Config files search order, if no --config:")
|
||||||
for file in default_config_files:
|
for file in default_config_files:
|
||||||
print(f" - {file}")
|
exists = "[EXISTS]" if Path(file).exists() else ""
|
||||||
|
print(f" - {file} {exists}")
|
||||||
|
|
||||||
default_config_files.reverse()
|
default_config_files.reverse()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue