From dca9b18871169f39fdc19c70eeb641d4cbad8c10 Mon Sep 17 00:00:00 2001 From: Jonathan Ellis Date: Thu, 19 Sep 2024 09:45:59 -0500 Subject: [PATCH] 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()