mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 06:15:00 +00:00
avoid repainting the live view when it is done
This commit is contained in:
parent
3f949e63a0
commit
b6fbaf1c33
1 changed files with 4 additions and 4 deletions
|
@ -322,11 +322,11 @@ class Coder:
|
||||||
md = Markdown(self.resp, style="blue", code_theme="default")
|
md = Markdown(self.resp, style="blue", code_theme="default")
|
||||||
live.update(md)
|
live.update(md)
|
||||||
|
|
||||||
live.update(Text(""))
|
# live.update(Text(""))
|
||||||
live.stop()
|
# live.stop()
|
||||||
|
|
||||||
md = Markdown(self.resp, style="blue", code_theme="default")
|
# md = Markdown(self.resp, style="blue", code_theme="default")
|
||||||
self.console.print(md)
|
# self.console.print(md)
|
||||||
|
|
||||||
pattern = re.compile(
|
pattern = re.compile(
|
||||||
r"(^```\S*\s*)?^((?:[a-zA-Z]:\\|/)?(?:[\w\s.-]+[\\/])*\w+(\.[\w\s.-]+)*)\s+(^```\S*\s*)?^<<<<<<< ORIGINAL\n(.*?\n?)^=======\n(.*?)^>>>>>>> UPDATED", # noqa: E501
|
r"(^```\S*\s*)?^((?:[a-zA-Z]:\\|/)?(?:[\w\s.-]+[\\/])*\w+(\.[\w\s.-]+)*)\s+(^```\S*\s*)?^<<<<<<< ORIGINAL\n(.*?\n?)^=======\n(.*?)^>>>>>>> UPDATED", # noqa: E501
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue