mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25: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
3
coder.py
3
coder.py
|
@ -149,6 +149,9 @@ class Coder:
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
|
if multiline_input:
|
||||||
|
line = input(". ")
|
||||||
|
else:
|
||||||
line = input("> ")
|
line = input("> ")
|
||||||
except EOFError:
|
except EOFError:
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue