mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
feat: include abs_read_only_fnames
when picking the fences
This commit is contained in:
parent
e6f5958278
commit
f72e3b3a9b
1 changed files with 4 additions and 0 deletions
|
@ -447,6 +447,10 @@ class Coder:
|
|||
all_content = ""
|
||||
for _fname, content in self.get_abs_fnames_content():
|
||||
all_content += content + "\n"
|
||||
for _fname in self.abs_read_only_fnames:
|
||||
content = self.io.read_text(_fname)
|
||||
if content is not None:
|
||||
all_content += content + "\n"
|
||||
|
||||
good = False
|
||||
for fence_open, fence_close in self.fences:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue