mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-07 13:15:00 +00:00
Refactor: Update spinner frames definition
This commit is contained in:
parent
4fb2d78011
commit
52ae22bcf8
1 changed files with 14 additions and 12 deletions
|
@ -269,18 +269,20 @@ class Spinner:
|
|||
|
||||
# Pre-render the animation frames using pure ASCII so they will
|
||||
# always display, even on very limited terminals.
|
||||
ascii_frames = """ #= |
|
||||
=# |
|
||||
=# |
|
||||
=# |
|
||||
=# |
|
||||
=# |
|
||||
=# |
|
||||
#= |
|
||||
#= |
|
||||
#= |
|
||||
#= |
|
||||
#= |""".splitlines()
|
||||
ascii_frames = [
|
||||
' #= | ',
|
||||
' =# | ',
|
||||
' =# | ',
|
||||
' =# | ',
|
||||
' =# | ',
|
||||
' =# | ',
|
||||
' =# | ',
|
||||
' #= | ',
|
||||
' #= | ',
|
||||
' #= | ',
|
||||
' #= | ',
|
||||
' #= | ',
|
||||
]
|
||||
|
||||
self.unicode_palette = "≋≣"
|
||||
xlate_from, xlate_to = ("=#", self.unicode_palette)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue