mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
fix: change default values for completion menu arguments from "default" to None in aider/args.py
This commit is contained in:
parent
2d5db0dc23
commit
e465cda5c8
1 changed files with 4 additions and 4 deletions
|
@ -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)"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue