mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 12:45:00 +00:00
style: completion menu colors customizable
This commit is contained in:
parent
12f1bf643a
commit
a91d3fed01
4 changed files with 51 additions and 0 deletions
|
@ -328,6 +328,30 @@ def get_parser(default_config_files, git_root):
|
|||
default="#0088ff",
|
||||
help="Set the color for assistant output (default: #0088ff)",
|
||||
)
|
||||
group.add_argument(
|
||||
"--completion-menu-color",
|
||||
metavar="COLOR",
|
||||
default="default",
|
||||
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",
|
||||
help="Set the background color for the completion menu (default: terminal's default background color)",
|
||||
)
|
||||
group.add_argument(
|
||||
"--completion-menu-current-color",
|
||||
metavar="COLOR",
|
||||
default="default",
|
||||
help="Set the color for the current item in the completion menu (default: terminal's default background color)",
|
||||
)
|
||||
group.add_argument(
|
||||
"--completion-menu-current-bg-color",
|
||||
metavar="COLOR",
|
||||
default="default",
|
||||
help="Set the background color for the current item in the completion menu (default: terminal's default text color)",
|
||||
)
|
||||
group.add_argument(
|
||||
"--code-theme",
|
||||
default="default",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue