Add new setting to yaml

This commit is contained in:
Matteo Landi 2025-05-18 15:40:55 +02:00
parent 2528872897
commit a9150eb9a0
2 changed files with 11 additions and 4 deletions

View file

@ -173,6 +173,9 @@
## Set the color for user input (default: #00cc00)
#user-input-color: "#00cc00"
## Set the color for user submitted input (default: None)
#user-submitted-input-color: "#00cc00"
## Set the color for tool output (default: None)
#tool-output-color: "xxx"

View file

@ -42,10 +42,10 @@ usage: aider [-h] [--model] [--openai-api-key] [--anthropic-api-key]
[--restore-chat-history | --no-restore-chat-history]
[--llm-history-file] [--dark-mode] [--light-mode]
[--pretty | --no-pretty] [--stream | --no-stream]
[--user-input-color] [--tool-output-color]
[--tool-error-color] [--tool-warning-color]
[--assistant-output-color] [--completion-menu-color]
[--completion-menu-bg-color]
[--user-input-color] [--user-submitted-input-color]
[--tool-output-color] [--tool-error-color]
[--tool-warning-color] [--assistant-output-color]
[--completion-menu-color] [--completion-menu-bg-color]
[--completion-menu-current-color]
[--completion-menu-current-bg-color] [--code-theme]
[--show-diffs] [--git | --no-git]
@ -325,6 +325,10 @@ Set the color for user input (default: #00cc00)
Default: #00cc00
Environment variable: `AIDER_USER_INPUT_COLOR`
### `--user-submitted-input-color VALUE`
Set the color for user submitted input (default: #00cc00)
Environment variable: `AIDER_USER_SUBMITTED_INPUT_COLOR`
### `--tool-output-color VALUE`
Set the color for tool output (default: None)
Environment variable: `AIDER_TOOL_OUTPUT_COLOR`