mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
chore: Adjust spinner ascii frame width
This commit is contained in:
parent
4d5852a30e
commit
edb3bf84cc
1 changed files with 18 additions and 12 deletions
|
@ -270,18 +270,24 @@ class Spinner:
|
||||||
# Pre-render the animation frames using pure ASCII so they will
|
# Pre-render the animation frames using pure ASCII so they will
|
||||||
# always display, even on very limited terminals.
|
# always display, even on very limited terminals.
|
||||||
ascii_frames = [
|
ascii_frames = [
|
||||||
"#= ",
|
"#= ", # C1 C2 space(8)
|
||||||
"=# ",
|
"=# ", # C2 C1 space(8)
|
||||||
" =# ",
|
" =# ", # space(1) C2 C1 space(7)
|
||||||
" =# ",
|
" =# ", # space(2) C2 C1 space(6)
|
||||||
" =# ",
|
" =# ", # space(3) C2 C1 space(5)
|
||||||
" =# ",
|
" =# ", # space(4) C2 C1 space(4)
|
||||||
" =#",
|
" =# ", # space(5) C2 C1 space(3)
|
||||||
" #=",
|
" =# ", # space(6) C2 C1 space(2)
|
||||||
" #= ",
|
" =# ", # space(7) C2 C1 space(1)
|
||||||
" #= ",
|
" =#", # space(8) C2 C1
|
||||||
" #= ",
|
" #=", # space(8) C1 C2
|
||||||
" #= ",
|
" #= ", # space(7) C1 C2 space(1)
|
||||||
|
" #= ", # space(6) C1 C2 space(2)
|
||||||
|
" #= ", # space(5) C1 C2 space(3)
|
||||||
|
" #= ", # space(4) C1 C2 space(4)
|
||||||
|
" #= ", # space(3) C1 C2 space(5)
|
||||||
|
" #= ", # space(2) C1 C2 space(6)
|
||||||
|
" #= ", # space(1) C1 C2 space(7)
|
||||||
]
|
]
|
||||||
|
|
||||||
self.unicode_palette = "≋≣"
|
self.unicode_palette = "≋≣"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue