From 8654a4201ff57e6df3c3012f6cf30a4f417c68a9 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 9 May 2023 12:42:27 -0700 Subject: [PATCH] WIP: Change output file name from "tmp.last-edit.md" to ".aider.last.md". --- aider/coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coder.py b/aider/coder.py index 8b78cc220..bdc7cc41b 100755 --- a/aider/coder.py +++ b/aider/coder.py @@ -195,7 +195,7 @@ class Coder: if interrupted: content += "\n^C KeyboardInterrupt" - Path("tmp.last-edit.md").write_text(content) + Path(".aider.last.md").write_text(content) self.cur_messages += [ dict(role="assistant", content=content),