rename --yes to --yes-always #767

This commit is contained in:
Paul Gauthier 2024-10-02 10:45:11 -07:00
parent 8dfda27151
commit d4fe0b18ad
2 changed files with 5 additions and 4 deletions

View file

@ -25,6 +25,7 @@ def get_parser(default_config_files, git_root):
description="aider is AI pair programming in your terminal",
add_config_file_help=True,
default_config_files=default_config_files,
config_file_parser_class=configargparse.YAMLConfigFileParser,
auto_env_var_prefix="AIDER_",
)
group = parser.add_argument_group("Main")
@ -611,7 +612,7 @@ def get_parser(default_config_files, git_root):
help="Apply the changes from the given file instead of running the chat (debug)",
)
group.add_argument(
"--yes",
"--yes-always",
action="store_true",
help="Always say yes to every confirmation",
default=None,