mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
fix: skip context copy when using placeholder input
This commit is contained in:
parent
bb4c61e9cc
commit
4a37d07acb
1 changed files with 2 additions and 1 deletions
|
@ -797,7 +797,8 @@ class Coder:
|
||||||
return self.partial_response_content
|
return self.partial_response_content
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
self.copy_context()
|
if not self.io.placeholder:
|
||||||
|
self.copy_context()
|
||||||
user_message = self.get_input()
|
user_message = self.get_input()
|
||||||
self.run_one(user_message, preproc)
|
self.run_one(user_message, preproc)
|
||||||
self.show_undo_hint()
|
self.show_undo_hint()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue