From 2e5fa9dea4ad8467e192e1b3cc50a8f700fc0c8b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 29 Oct 2024 13:58:23 -0700 Subject: [PATCH] style: align /add commands in history file for better readability --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 3a270059d..708998c8d 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -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):