Merge branch 'main' of github.com:paul-gauthier/aider

This commit is contained in:
Paul Gauthier 2024-09-27 12:32:09 -07:00
commit d50d97ab26
2 changed files with 3 additions and 2 deletions

View file

@ -1039,8 +1039,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()

View file

@ -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,