mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 06:15:00 +00:00
show a . prompt during multiline
This commit is contained in:
parent
42598e2329
commit
5527e8e433
1 changed files with 5 additions and 2 deletions
5
coder.py
5
coder.py
|
@ -149,7 +149,10 @@ class Coder:
|
|||
|
||||
while True:
|
||||
try:
|
||||
line = input("> ")
|
||||
if multiline_input:
|
||||
line = input(". ")
|
||||
else:
|
||||
line = input("> ")
|
||||
except EOFError:
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue