From dca9b18871169f39fdc19c70eeb641d4cbad8c10 Mon Sep 17 00:00:00 2001 From: Jonathan Ellis Date: Thu, 19 Sep 2024 09:45:59 -0500 Subject: [PATCH 1/2] feat: rename /clipboard to /paste --- aider/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/commands.py b/aider/commands.py index e6035ad10..fab051cdf 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1035,8 +1035,8 @@ class Commands: return text - def cmd_clipboard(self, args): - "Add image/text from the clipboard to the chat (optionally provide a name for the image)" + def cmd_paste(self, args): + "Paste image/text from the clipboard into the chat (optionally provide a name for the image)" try: # Check for image first image = ImageGrab.grabclipboard() From 6ccb8e3a138e86273f9cf39e2ffffef3c494c2de Mon Sep 17 00:00:00 2001 From: rti Date: Thu, 26 Sep 2024 08:41:13 +0200 Subject: [PATCH 2/2] fix(InputOutput): apply tool warning color --- aider/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/main.py b/aider/main.py index e27948f43..fd2597e3e 100644 --- a/aider/main.py +++ b/aider/main.py @@ -412,6 +412,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F output=output, user_input_color=args.user_input_color, tool_output_color=args.tool_output_color, + tool_warning_color=args.tool_warning_color, tool_error_color=args.tool_error_color, completion_menu_color=args.completion_menu_color, completion_menu_bg_color=args.completion_menu_bg_color,