mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
feat: add --suggest-shell-commands option with default true
This commit is contained in:
parent
c6c57f0b6e
commit
f33850ceab
1 changed files with 6 additions and 0 deletions
|
@ -591,6 +591,12 @@ def get_parser(default_config_files, git_root):
|
||||||
help="Run aider in your browser",
|
help="Run aider in your browser",
|
||||||
default=False,
|
default=False,
|
||||||
)
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"--suggest-shell-commands",
|
||||||
|
action=argparse.BooleanOptionalAction,
|
||||||
|
default=True,
|
||||||
|
help="Enable/disable suggesting shell commands (default: True)",
|
||||||
|
)
|
||||||
|
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue