This commit is contained in:
Paul Gauthier 2024-12-06 07:02:06 -08:00
parent 0fdf3fc851
commit 009c4dc8db
7 changed files with 34 additions and 12 deletions

View file

@ -312,6 +312,9 @@ cog.outl("```")
## Enable/disable watching files for ai coding comments (default: False)
#watch-files: false
## Enable automatic copy/paste of chat between aider and web UI (default: False)
#copy-paste: false
########################
# Fixing and committing:

View file

@ -297,6 +297,9 @@ cog.outl("```")
## Enable/disable watching files for ai coding comments (default: False)
#AIDER_WATCH_FILES=false
## Enable automatic copy/paste of chat between aider and web UI (default: False)
#AIDER_COPY_PASTE=false
########################
# Fixing and committing:

View file

@ -60,9 +60,10 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
[--attribute-commit-message-committer | --no-attribute-commit-message-committer]
[--commit] [--commit-prompt] [--dry-run | --no-dry-run]
[--skip-sanity-check-repo]
[--watch-files | --no-watch-files] [--lint]
[--lint-cmd] [--auto-lint | --no-auto-lint]
[--test-cmd] [--auto-test | --no-auto-test] [--test]
[--watch-files | --no-watch-files]
[--copy-paste | --no-copy-paste] [--lint] [--lint-cmd]
[--auto-lint | --no-auto-lint] [--test-cmd]
[--auto-test | --no-auto-test] [--test]
[--analytics | --no-analytics] [--analytics-log]
[--analytics-disable] [--file] [--read] [--vim]
[--chat-language] [--version] [--just-check-update]
@ -489,6 +490,14 @@ Aliases:
- `--watch-files`
- `--no-watch-files`
### `--copy-paste`
Enable automatic copy/paste of chat between aider and web UI (default: False)
Default: False
Environment variable: `AIDER_COPY_PASTE`
Aliases:
- `--copy-paste`
- `--no-copy-paste`
## Fixing and committing:
### `--lint`

View file

@ -29,6 +29,7 @@ cog.out(get_help_md())
| **/code** | Ask for changes to your code |
| **/commit** | Commit edits to the repo made outside the chat (commit message optional) |
| **/copy** | Copy the last assistant message to the clipboard |
| **/copy-context** | Copy the current chat context as markdown, suitable to paste into a web UI |
| **/diff** | Display the diff of changes since the last message |
| **/drop** | Remove files from the chat session to free up context space |
| **/editor** | Open an editor to write a prompt |