mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
chore: Add item name to repo map progress
This commit is contained in:
parent
2bc9386876
commit
11480f6110
1 changed files with 3 additions and 3 deletions
|
@ -380,7 +380,7 @@ class RepoMap:
|
|||
if self.verbose:
|
||||
self.io.tool_output(f"Processing {fname}")
|
||||
if progress and not showing_bar:
|
||||
progress()
|
||||
progress("Updating repo map: " + fname)
|
||||
|
||||
try:
|
||||
file_ok = Path(fname).is_file()
|
||||
|
@ -459,7 +459,7 @@ class RepoMap:
|
|||
|
||||
for ident in idents:
|
||||
if progress:
|
||||
progress()
|
||||
progress("Updating repo map: " + ident)
|
||||
|
||||
definers = defines[ident]
|
||||
|
||||
|
@ -512,7 +512,7 @@ class RepoMap:
|
|||
ranked_definitions = defaultdict(float)
|
||||
for src in G.nodes:
|
||||
if progress:
|
||||
progress()
|
||||
progress("Updating repo map: " + src)
|
||||
|
||||
src_rank = ranked[src]
|
||||
total_weight = sum(data["weight"] for _src, _dst, data in G.out_edges(src, data=True))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue