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
For quick usage it would be very useful to offer at least stylish::ansi::println! that wraps stdout and prints to it, currently that requires something like:
let stdout = std::io::stdout();let io = stylish::io::ansi(stdout.lock());writeln!(io,"{thing:s}")?;
io.finish()?;
For quick usage it would be very useful to offer at least
stylish::ansi::println!
that wrapsstdout
and prints to it, currently that requires something like:or
The text was updated successfully, but these errors were encountered: