fusesource / jansi

Jansi is a small java library that allows you to use ANSI escape sequences to format your console output which works even on windows.
http://fusesource.github.io/jansi/
Apache License 2.0
1.11k stars 140 forks source link

How do I stop the cursor blinking? #164

Closed markjfisher closed 3 years ago

markjfisher commented 4 years ago

I tried the following, but cursor still blinks:

print(ansi().cursor(1, 3).fgBrightRed().bgBright(CYAN).a("Text").a(Ansi.Attribute.BLINK_OFF))
gnodet commented 3 years ago

Did you call flush() on the output stream to make sure the ansi sequences are written to the terminal ?