feat: add clipboard watcher with --copypaste flag

This commit is contained in:
Paul Gauthier (aider) 2024-12-05 18:44:50 -08:00
parent 2a1065efc1
commit d2d5887936
2 changed files with 11 additions and 0 deletions

View file

@ -535,6 +535,12 @@ def get_parser(default_config_files, git_root):
default=False,
help="Enable/disable watching files for ai coding comments (default: False)",
)
group.add_argument(
"--copypaste",
action=argparse.BooleanOptionalAction,
default=False,
help="Enable/disable watching clipboard for changes (default: False)",
)
group = parser.add_argument_group("Fixing and committing")
group.add_argument(
"--lint",