You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some IDEs have partial ANSI support. They know how to interpret color codes but can't change the cursor position. Fortunately, they understand carriage returns (CR). So, it's possible for them to support some animations if we don't print line feeds.
The logic behind the animation loop seems to be: do a carriage return, then move the cursor up by one line and finally print the animation ending with a line feed. What if we don't print that line feed?
The text was updated successfully, but these errors were encountered:
Some IDEs have partial ANSI support. They know how to interpret color codes but can't change the cursor position. Fortunately, they understand carriage returns (CR). So, it's possible for them to support some animations if we don't print line feeds.
The logic behind the animation loop seems to be: do a carriage return, then move the cursor up by one line and finally print the animation ending with a line feed. What if we don't print that line feed?
The text was updated successfully, but these errors were encountered: