mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
fix: fix line length issue in _get_style method by breaking long string into multiple lines
This commit is contained in:
parent
0a558682d8
commit
b16050211c
1 changed files with 3 additions and 2 deletions
|
@ -264,8 +264,9 @@ class InputOutput:
|
||||||
f"bg:{self.completion_menu_bg_color} {self.completion_menu_color}"
|
f"bg:{self.completion_menu_bg_color} {self.completion_menu_color}"
|
||||||
),
|
),
|
||||||
"completion-menu.completion.current": (
|
"completion-menu.completion.current": (
|
||||||
f"bg:{self.completion_menu_current_bg_color} {self.completion_menu_current_color}"
|
f"bg:{self.completion_menu_current_bg_color} "
|
||||||
),
|
f"{self.completion_menu_current_color}"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
return Style.from_dict(style_dict)
|
return Style.from_dict(style_dict)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue