From a6bce6d5f176b9a886f2c21679f7be6741306f0f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 21 Mar 2025 20:25:04 -0700 Subject: [PATCH] refactor: Change multiline input prompt from ". " to "> " --- aider/io.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/io.py b/aider/io.py index ffc932f3c..e18691ba4 100644 --- a/aider/io.py +++ b/aider/io.py @@ -70,7 +70,7 @@ def restore_multiline(func): class CommandCompletionException(Exception): - """Raised when a command should use the normal autocompleter instead of + """Raised when a command should use the normal autocompleter instead of command-specific completion.""" pass @@ -577,7 +577,7 @@ class InputOutput: while True: if multiline_input: - show = ". " + show = "> " try: if self.prompt_session: @@ -593,7 +593,7 @@ class InputOutput: self.clipboard_watcher.start() def get_continuation(width, line_number, is_soft_wrap): - return ". " + return "> " line = self.prompt_session.prompt( show,