From 66ad186eddc03fce0d6940d6eb11bb1ee81f84bb Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 1 Nov 2024 09:04:55 -0700 Subject: [PATCH] start /save commands with /drop --- aider/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/commands.py b/aider/commands.py index 0c5cec66b..45d19c1b8 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1297,6 +1297,7 @@ class Commands: try: with open(args.strip(), "w", encoding=self.io.encoding) as f: + f.write("/drop\n") # Write commands to add editable files for fname in sorted(self.coder.abs_fnames): rel_fname = self.coder.get_rel_fname(fname)