This commit is contained in:
Paul Gauthier 2024-08-27 14:08:04 -07:00
parent ca414ebf32
commit 38bde441a6
5 changed files with 21 additions and 0 deletions

View file

@ -283,3 +283,6 @@
## Run aider in your browser ## Run aider in your browser
#gui: false #gui: false
## Enable/disable suggesting shell commands (default: True)
#suggest-shell-commands: true

View file

@ -281,3 +281,6 @@
## Run aider in your browser ## Run aider in your browser
#AIDER_GUI=false #AIDER_GUI=false
## Enable/disable suggesting shell commands (default: True)
#AIDER_SUGGEST_SHELL_COMMANDS=true

View file

@ -331,5 +331,8 @@ cog.outl("```")
## Run aider in your browser ## Run aider in your browser
#gui: false #gui: false
## Enable/disable suggesting shell commands (default: True)
#suggest-shell-commands: true
``` ```
<!--[[[end]]]--> <!--[[[end]]]-->

View file

@ -323,6 +323,9 @@ cog.outl("```")
## Run aider in your browser ## Run aider in your browser
#AIDER_GUI=false #AIDER_GUI=false
## Enable/disable suggesting shell commands (default: True)
#AIDER_SUGGEST_SHELL_COMMANDS=true
``` ```
<!--[[[end]]]--> <!--[[[end]]]-->

View file

@ -61,6 +61,7 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
[--install-main-branch] [--upgrade] [--apply] [--yes] [--install-main-branch] [--upgrade] [--apply] [--yes]
[-v] [--show-repo-map] [--show-prompts] [--exit] [-v] [--show-repo-map] [--show-prompts] [--exit]
[--message] [--message-file] [--encoding] [-c] [--gui] [--message] [--message-file] [--encoding] [-c] [--gui]
[--suggest-shell-commands | --no-suggest-shell-commands]
``` ```
@ -547,4 +548,12 @@ Environment variable: `AIDER_GUI`
Aliases: Aliases:
- `--gui` - `--gui`
- `--browser` - `--browser`
### `--suggest-shell-commands`
Enable/disable suggesting shell commands (default: True)
Default: True
Environment variable: `AIDER_SUGGEST_SHELL_COMMANDS`
Aliases:
- `--suggest-shell-commands`
- `--no-suggest-shell-commands`
<!--[[[end]]]--> <!--[[[end]]]-->