style: align /add commands in history file for better readability

This commit is contained in:
Paul Gauthier 2024-10-29 13:58:23 -07:00 committed by Paul Gauthier (aider)
parent 717592463e
commit 2e5fa9dea4

View file

@ -1281,7 +1281,7 @@ class Commands:
# Write commands to add editable files
for fname in sorted(self.coder.abs_fnames):
rel_fname = self.coder.get_rel_fname(fname)
f.write(f"/add {rel_fname}\n")
f.write(f"/add {rel_fname}\n")
# Write commands to add read-only files
for fname in sorted(self.coder.abs_read_only_fnames):