feat: add --suggest-shell-commands option with default true

This commit is contained in:
Paul Gauthier (aider) 2024-08-27 13:30:31 -07:00
parent c6c57f0b6e
commit f33850ceab

View file

@ -591,6 +591,12 @@ def get_parser(default_config_files, git_root):
help="Run aider in your browser",
default=False,
)
group.add_argument(
"--suggest-shell-commands",
action=argparse.BooleanOptionalAction,
default=True,
help="Enable/disable suggesting shell commands (default: True)",
)
return parser