From e465cda5c88d349a0caeb426fb5b624078984b2a Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 27 Sep 2024 19:49:17 -0700 Subject: [PATCH] fix: change default values for completion menu arguments from "default" to None in aider/args.py --- aider/args.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aider/args.py b/aider/args.py index 9be32e44a..a5b36e6dc 100644 --- a/aider/args.py +++ b/aider/args.py @@ -375,13 +375,13 @@ def get_parser(default_config_files, git_root): group.add_argument( "--completion-menu-color", metavar="COLOR", - default="default", + default=None, help="Set the color for the completion menu (default: terminal's default text color)", ) group.add_argument( "--completion-menu-bg-color", metavar="COLOR", - default="default", + default=None, help=( "Set the background color for the completion menu (default: terminal's default" " background color)" @@ -390,7 +390,7 @@ def get_parser(default_config_files, git_root): group.add_argument( "--completion-menu-current-color", metavar="COLOR", - default="default", + default=None, help=( "Set the color for the current item in the completion menu (default: terminal's default" " background color)" @@ -399,7 +399,7 @@ def get_parser(default_config_files, git_root): group.add_argument( "--completion-menu-current-bg-color", metavar="COLOR", - default="default", + default=None, help=( "Set the background color for the current item in the completion menu (default:" " terminal's default text color)"