From a9150eb9a0f25bb2a8f579273791a83a90aeeb76 Mon Sep 17 00:00:00 2001 From: Matteo Landi Date: Sun, 18 May 2025 15:40:55 +0200 Subject: [PATCH] Add new setting to yaml --- aider/website/assets/sample.aider.conf.yml | 3 +++ aider/website/docs/config/options.md | 12 ++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/aider/website/assets/sample.aider.conf.yml b/aider/website/assets/sample.aider.conf.yml index 7fe9459bf..737ca9e54 100644 --- a/aider/website/assets/sample.aider.conf.yml +++ b/aider/website/assets/sample.aider.conf.yml @@ -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" diff --git a/aider/website/docs/config/options.md b/aider/website/docs/config/options.md index 368c4ec7e..3dd5e4494 100644 --- a/aider/website/docs/config/options.md +++ b/aider/website/docs/config/options.md @@ -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`