mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
refactor: Change multiline input prompt from ". " to "> "
This commit is contained in:
parent
94016c87fd
commit
a6bce6d5f1
1 changed files with 3 additions and 3 deletions
|
@ -577,7 +577,7 @@ class InputOutput:
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
if multiline_input:
|
if multiline_input:
|
||||||
show = ". "
|
show = "> "
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if self.prompt_session:
|
if self.prompt_session:
|
||||||
|
@ -593,7 +593,7 @@ class InputOutput:
|
||||||
self.clipboard_watcher.start()
|
self.clipboard_watcher.start()
|
||||||
|
|
||||||
def get_continuation(width, line_number, is_soft_wrap):
|
def get_continuation(width, line_number, is_soft_wrap):
|
||||||
return ". "
|
return "> "
|
||||||
|
|
||||||
line = self.prompt_session.prompt(
|
line = self.prompt_session.prompt(
|
||||||
show,
|
show,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue