From fbadfcfa7c4a6b29d88c6dcb960cd975e72414f6 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 21 Nov 2024 18:37:51 -0800 Subject: [PATCH] refactor: Remove unnecessary input logging and history tracking in pipe_editor command --- aider/commands.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/aider/commands.py b/aider/commands.py index 737ba05a4..7f500ce08 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1365,8 +1365,6 @@ class Commands: "Open an editor to write a prompt" user_input = pipe_editor(initial_content, suffix="md", editor=self.editor) - self.io.user_input(user_input, log_only=False) - self.io.add_to_input_history(user_input) if user_input.strip(): self.io.set_placeholder(user_input.rstrip())