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
7
coder.py
7
coder.py
|
@ -149,7 +149,10 @@ class Coder:
|
|||
|
||||
while True:
|
||||
try:
|
||||
line = input("> ")
|
||||
if multiline_input:
|
||||
line = input(". ")
|
||||
else:
|
||||
line = input("> ")
|
||||
except EOFError:
|
||||
return
|
||||
|
||||
|
@ -619,4 +622,4 @@ def main():
|
|||
|
||||
if __name__ == "__main__":
|
||||
status = main()
|
||||
sys.exit(status)
|
||||
sys.exit(status)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue