From 11480f6110696ab26462bf8342d46e0cfe1888b4 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 9 May 2025 06:53:57 -0700 Subject: [PATCH] chore: Add item name to repo map progress --- aider/repomap.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/repomap.py b/aider/repomap.py index 598770d18..580292a3c 100644 --- a/aider/repomap.py +++ b/aider/repomap.py @@ -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))