From 4fb2d780119bbc9a75bebabbee84d07f865cd9c1 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 8 May 2025 19:21:28 -0700 Subject: [PATCH] spinner --- aider/utils.py | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/aider/utils.py b/aider/utils.py index bd332d996..613da3cd8 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -269,20 +269,18 @@ class Spinner: # Pre-render the animation frames using pure ASCII so they will # always display, even on very limited terminals. - ascii_frames = """ -[#= ] -[=# ] -[ =# ] -[ =# ] -[ =# ] -[ =# ] -[ =#] -[ #=] -[ #= ] -[ #= ] -[ #= ] -[ #= ] -""".strip().splitlines() + ascii_frames = """ #= | + =# | + =# | + =# | + =# | + =# | + =# | + #= | + #= | + #= | + #= | + #= |""".splitlines() self.unicode_palette = "≋≣" xlate_from, xlate_to = ("=#", self.unicode_palette)