From c4764fa4d80c5a33e58438fff26228442acc52d3 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 1 Dec 2024 08:25:04 -0800 Subject: [PATCH] refactor: Add TODO for TreeContext-based comment rendering --- aider/watch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/watch.py b/aider/watch.py index 743b461c5..151de4376 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -172,6 +172,7 @@ class FileWatcher: if line_nums: ai_comments[fname] = comments + # instead of just joining the comments, use TreeContext to render them in context of their files ai! res = "\n".join( comment for comments in ai_comments.values() if comments for comment in comments )