fix: skip context copy when using placeholder input

This commit is contained in:
Paul Gauthier 2024-12-09 18:46:44 -08:00 committed by Paul Gauthier (aider)
parent bb4c61e9cc
commit 4a37d07acb

View file

@ -797,6 +797,7 @@ class Coder:
return self.partial_response_content
while True:
try:
if not self.io.placeholder:
self.copy_context()
user_message = self.get_input()
self.run_one(user_message, preproc)