Skip to content

Commit

Permalink
copy
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Nov 26, 2024
1 parent c84e192 commit 49ce9e1
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 67 deletions.
132 changes: 66 additions & 66 deletions aider/website/assets/sample-analytics.jsonl

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions aider/website/assets/sample.aider.conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,9 @@
## Enable/disable fancy input with history and completion (default: True)
#fancy-input: true

## Enable/disable detection and offering to add URLs to chat (default: True)
#detect-urls: true

## Specify which editor to use for the /editor command
#editor: xxx

Expand Down
3 changes: 3 additions & 0 deletions aider/website/assets/sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,9 @@
## Enable/disable fancy input with history and completion (default: True)
#AIDER_FANCY_INPUT=true

## Enable/disable detection and offering to add URLs to chat (default: True)
#AIDER_DETECT_URLS=true

## Specify which editor to use for the /editor command
#AIDER_EDITOR=

Expand Down
3 changes: 3 additions & 0 deletions aider/website/docs/config/aider_conf.md
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,9 @@ cog.outl("```")
## Enable/disable fancy input with history and completion (default: True)
#fancy-input: true
## Enable/disable detection and offering to add URLs to chat (default: True)
#detect-urls: true
## Specify which editor to use for the /editor command
#editor: xxx
Expand Down
3 changes: 3 additions & 0 deletions aider/website/docs/config/dotenv.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,9 @@ cog.outl("```")
## Enable/disable fancy input with history and completion (default: True)
#AIDER_FANCY_INPUT=true
## Enable/disable detection and offering to add URLs to chat (default: True)
#AIDER_DETECT_URLS=true
## Specify which editor to use for the /editor command
#AIDER_EDITOR=
Expand Down
11 changes: 10 additions & 1 deletion aider/website/docs/config/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
[--message-file] [--load] [--encoding] [-c]
[--gui | --no-gui | --browser | --no-browser]
[--suggest-shell-commands | --no-suggest-shell-commands]
[--fancy-input | --no-fancy-input] [--editor]
[--fancy-input | --no-fancy-input]
[--detect-urls | --no-detect-urls] [--editor]
[--voice-format] [--voice-language]
```
Expand Down Expand Up @@ -673,6 +674,14 @@ Aliases:
- `--fancy-input`
- `--no-fancy-input`

### `--detect-urls`
Enable/disable detection and offering to add URLs to chat (default: True)
Default: True
Environment variable: `AIDER_DETECT_URLS`
Aliases:
- `--detect-urls`
- `--no-detect-urls`

### `--editor VALUE`
Specify which editor to use for the /editor command
Environment variable: `AIDER_EDITOR`
Expand Down

0 comments on commit 49ce9e1

Please sign in to comment.