refactor: Remove unnecessary input logging and history tracking in pipe_editor command

This commit is contained in:
Paul Gauthier 2024-11-21 18:37:51 -08:00 committed by Paul Gauthier (aider)
parent 2c12234604
commit fbadfcfa7c

View file

@ -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())