mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-16 17:44:59 +00:00
Let 'rich' use code_theme as inline_code_theme
This commit is contained in:
parent
837b8a93e9
commit
4c50fc6d69
1 changed files with 5 additions and 1 deletions
|
@ -1001,7 +1001,11 @@ class InputOutput:
|
||||||
self.console.print(*messages, style=style)
|
self.console.print(*messages, style=style)
|
||||||
|
|
||||||
def get_assistant_mdstream(self):
|
def get_assistant_mdstream(self):
|
||||||
mdargs = dict(style=self.assistant_output_color, code_theme=self.code_theme)
|
mdargs = dict(
|
||||||
|
style=self.assistant_output_color,
|
||||||
|
code_theme=self.code_theme,
|
||||||
|
inline_code_lexer="text",
|
||||||
|
)
|
||||||
mdStream = MarkdownStream(mdargs=mdargs)
|
mdStream = MarkdownStream(mdargs=mdargs)
|
||||||
return mdStream
|
return mdStream
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue