From 0fa660066f11d61ab052414170056feb717d750b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 27 May 2023 15:19:53 -0700 Subject: [PATCH] color the hrule --- aider/io.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index 061c87945..2725ed86b 100644 --- a/aider/io.py +++ b/aider/io.py @@ -82,7 +82,7 @@ class InputOutput: chat_history_file=None, input=None, output=None, - user_input_color="green", + user_input_color="blue", tool_output_color=None, tool_error_color="red", ): @@ -109,7 +109,8 @@ class InputOutput: def get_input(self, root, rel_fnames, addable_rel_fnames, commands): if self.pretty: - self.console.rule() + style = dict(style=self.user_input_color) if self.user_input_color else dict() + self.console.rule(**style) else: print()