From a2634224e2cce2c3659cef53084131c4b1a43c6d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 3 Sep 2024 13:30:38 -0700 Subject: [PATCH] copy --- aider/website/assets/sample.aider.conf.yml | 5 ++++- aider/website/assets/sample.env | 5 ++++- aider/website/docs/config/aider_conf.md | 5 ++++- aider/website/docs/config/dotenv.md | 5 ++++- aider/website/docs/config/options.md | 12 +++++++++--- 5 files changed, 25 insertions(+), 7 deletions(-) diff --git a/aider/website/assets/sample.aider.conf.yml b/aider/website/assets/sample.aider.conf.yml index 28c4ca0c4..b074b628d 100644 --- a/aider/website/assets/sample.aider.conf.yml +++ b/aider/website/assets/sample.aider.conf.yml @@ -146,9 +146,12 @@ ## Set the color for tool output (default: None) #tool-output-color: -## Set the color for tool error messages (default: red) +## Set the color for tool error messages (default: #FF2222) #tool-error-color: #FF2222 +## Set the color for tool warning messages (default: #FFA500) +#tool-warning-color: #FFA500 + ## Set the color for assistant output (default: #0088ff) #assistant-output-color: #0088ff diff --git a/aider/website/assets/sample.env b/aider/website/assets/sample.env index 5dada8732..6ea1e44ab 100644 --- a/aider/website/assets/sample.env +++ b/aider/website/assets/sample.env @@ -150,9 +150,12 @@ ## Set the color for tool output (default: None) #AIDER_TOOL_OUTPUT_COLOR= -## Set the color for tool error messages (default: red) +## Set the color for tool error messages (default: #FF2222) #AIDER_TOOL_ERROR_COLOR=#FF2222 +## Set the color for tool warning messages (default: #FFA500) +#AIDER_TOOL_WARNING_COLOR=#FFA500 + ## Set the color for assistant output (default: #0088ff) #AIDER_ASSISTANT_OUTPUT_COLOR=#0088ff diff --git a/aider/website/docs/config/aider_conf.md b/aider/website/docs/config/aider_conf.md index 1e2665801..5e56aa8a0 100644 --- a/aider/website/docs/config/aider_conf.md +++ b/aider/website/docs/config/aider_conf.md @@ -194,9 +194,12 @@ cog.outl("```") ## Set the color for tool output (default: None) #tool-output-color: -## Set the color for tool error messages (default: red) +## Set the color for tool error messages (default: #FF2222) #tool-error-color: #FF2222 +## Set the color for tool warning messages (default: #FFA500) +#tool-warning-color: #FFA500 + ## Set the color for assistant output (default: #0088ff) #assistant-output-color: #0088ff diff --git a/aider/website/docs/config/dotenv.md b/aider/website/docs/config/dotenv.md index f843184ed..343165308 100644 --- a/aider/website/docs/config/dotenv.md +++ b/aider/website/docs/config/dotenv.md @@ -192,9 +192,12 @@ cog.outl("```") ## Set the color for tool output (default: None) #AIDER_TOOL_OUTPUT_COLOR= -## Set the color for tool error messages (default: red) +## Set the color for tool error messages (default: #FF2222) #AIDER_TOOL_ERROR_COLOR=#FF2222 +## Set the color for tool warning messages (default: #FFA500) +#AIDER_TOOL_WARNING_COLOR=#FFA500 + ## Set the color for assistant output (default: #0088ff) #AIDER_ASSISTANT_OUTPUT_COLOR=#0088ff diff --git a/aider/website/docs/config/options.md b/aider/website/docs/config/options.md index b13944aa0..ac4ef61ef 100644 --- a/aider/website/docs/config/options.md +++ b/aider/website/docs/config/options.md @@ -43,8 +43,9 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model] [--llm-history-file] [--dark-mode] [--light-mode] [--pretty | --no-pretty] [--stream | --no-stream] [--user-input-color] [--tool-output-color] - [--tool-error-color] [--assistant-output-color] - [--code-theme] [--show-diffs] [--git | --no-git] + [--tool-error-color] [--tool-warning-color] + [--assistant-output-color] [--code-theme] + [--show-diffs] [--git | --no-git] [--gitignore | --no-gitignore] [--aiderignore] [--subtree-only] [--auto-commits | --no-auto-commits] [--dirty-commits | --no-dirty-commits] @@ -288,10 +289,15 @@ Set the color for tool output (default: None) Environment variable: `AIDER_TOOL_OUTPUT_COLOR` ### `--tool-error-color VALUE` -Set the color for tool error messages (default: red) +Set the color for tool error messages (default: #FF2222) Default: #FF2222 Environment variable: `AIDER_TOOL_ERROR_COLOR` +### `--tool-warning-color VALUE` +Set the color for tool warning messages (default: #FFA500) +Default: #FFA500 +Environment variable: `AIDER_TOOL_WARNING_COLOR` + ### `--assistant-output-color VALUE` Set the color for assistant output (default: #0088ff) Default: #0088ff