mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 11:14:59 +00:00
copy
This commit is contained in:
parent
c598cdd576
commit
80daa942f3
5 changed files with 26 additions and 22 deletions
|
@ -207,10 +207,10 @@
|
||||||
#version:
|
#version:
|
||||||
|
|
||||||
## Check for updates and return status in the exit code
|
## Check for updates and return status in the exit code
|
||||||
#check-update: false
|
#just-check-update: false
|
||||||
|
|
||||||
## Skips checking for the update when the program runs
|
## Check for new aider versions on launch
|
||||||
#skip-check-update: false
|
#check-update: true
|
||||||
|
|
||||||
## Apply the changes from the given file instead of running the chat (debug)
|
## Apply the changes from the given file instead of running the chat (debug)
|
||||||
#apply:
|
#apply:
|
||||||
|
|
|
@ -208,10 +208,10 @@
|
||||||
#AIDER_VOICE_LANGUAGE=en
|
#AIDER_VOICE_LANGUAGE=en
|
||||||
|
|
||||||
## Check for updates and return status in the exit code
|
## Check for updates and return status in the exit code
|
||||||
#AIDER_CHECK_UPDATE=false
|
#AIDER_JUST_CHECK_UPDATE=false
|
||||||
|
|
||||||
## Skips checking for the update when the program runs
|
## Check for new aider versions on launch
|
||||||
#AIDER_SKIP_CHECK_UPDATE=false
|
#AIDER_CHECK_UPDATE=true
|
||||||
|
|
||||||
## Apply the changes from the given file instead of running the chat (debug)
|
## Apply the changes from the given file instead of running the chat (debug)
|
||||||
#AIDER_APPLY=
|
#AIDER_APPLY=
|
||||||
|
|
|
@ -246,10 +246,10 @@ cog.outl("```")
|
||||||
#version:
|
#version:
|
||||||
|
|
||||||
## Check for updates and return status in the exit code
|
## Check for updates and return status in the exit code
|
||||||
#check-update: false
|
#just-check-update: false
|
||||||
|
|
||||||
## Skips checking for the update when the program runs
|
## Check for new aider versions on launch
|
||||||
#skip-check-update: false
|
#check-update: true
|
||||||
|
|
||||||
## Apply the changes from the given file instead of running the chat (debug)
|
## Apply the changes from the given file instead of running the chat (debug)
|
||||||
#apply:
|
#apply:
|
||||||
|
|
|
@ -250,10 +250,10 @@ cog.outl("```")
|
||||||
#AIDER_VOICE_LANGUAGE=en
|
#AIDER_VOICE_LANGUAGE=en
|
||||||
|
|
||||||
## Check for updates and return status in the exit code
|
## Check for updates and return status in the exit code
|
||||||
#AIDER_CHECK_UPDATE=false
|
#AIDER_JUST_CHECK_UPDATE=false
|
||||||
|
|
||||||
## Skips checking for the update when the program runs
|
## Check for new aider versions on launch
|
||||||
#AIDER_SKIP_CHECK_UPDATE=false
|
#AIDER_CHECK_UPDATE=true
|
||||||
|
|
||||||
## Apply the changes from the given file instead of running the chat (debug)
|
## Apply the changes from the given file instead of running the chat (debug)
|
||||||
#AIDER_APPLY=
|
#AIDER_APPLY=
|
||||||
|
|
|
@ -51,10 +51,11 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
|
||||||
[--dry-run | --no-dry-run] [--commit] [--lint]
|
[--dry-run | --no-dry-run] [--commit] [--lint]
|
||||||
[--lint-cmd] [--auto-lint | --no-auto-lint]
|
[--lint-cmd] [--auto-lint | --no-auto-lint]
|
||||||
[--test-cmd] [--auto-test | --no-auto-test] [--test]
|
[--test-cmd] [--auto-test | --no-auto-test] [--test]
|
||||||
[--vim] [--voice-language] [--version] [--check-update]
|
[--vim] [--voice-language] [--version]
|
||||||
[--skip-check-update] [--apply] [--yes] [-v]
|
[--just-check-update]
|
||||||
[--show-repo-map] [--show-prompts] [--exit] [--message]
|
[--check-update | --no-check-update] [--apply] [--yes]
|
||||||
[--message-file] [--encoding] [-c] [--gui]
|
[-v] [--show-repo-map] [--show-prompts] [--exit]
|
||||||
|
[--message] [--message-file] [--encoding] [-c] [--gui]
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -396,15 +397,18 @@ Environment variable: `AIDER_VOICE_LANGUAGE`
|
||||||
### `--version`
|
### `--version`
|
||||||
Show the version number and exit
|
Show the version number and exit
|
||||||
|
|
||||||
### `--check-update`
|
### `--just-check-update`
|
||||||
Check for updates and return status in the exit code
|
Check for updates and return status in the exit code
|
||||||
Default: False
|
Default: False
|
||||||
Environment variable: `AIDER_CHECK_UPDATE`
|
Environment variable: `AIDER_JUST_CHECK_UPDATE`
|
||||||
|
|
||||||
### `--skip-check-update`
|
### `--check-update`
|
||||||
Skips checking for the update when the program runs
|
Check for new aider versions on launch
|
||||||
Default: False
|
Default: True
|
||||||
Environment variable: `AIDER_SKIP_CHECK_UPDATE`
|
Environment variable: `AIDER_CHECK_UPDATE`
|
||||||
|
Aliases:
|
||||||
|
- `--check-update`
|
||||||
|
- `--no-check-update`
|
||||||
|
|
||||||
### `--apply FILE`
|
### `--apply FILE`
|
||||||
Apply the changes from the given file instead of running the chat (debug)
|
Apply the changes from the given file instead of running the chat (debug)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue