We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ProgressBar::println
When trying to println lengthy messages indicatif forces the terminal to "scroll up" and stop truncating the messages.
println
To reproduce:
use std::{time::Duration, thread}; use indicatif::ProgressBar; // prepare-0.17-7 fn main() { let bar = ProgressBar::new(1); bar.set_style(indicatif::ProgressStyle::default_bar().template("{spinner}").unwrap()); bar.enable_steady_tick(Duration::from_millis(100)); let mut size = 300; loop { let msg = "0123456789".repeat(size); bar.println("-------"); bar.println(msg); size += 10; thread::sleep(Duration::from_millis(500)); } }
Recording:
The text was updated successfully, but these errors were encountered:
I'm using the unreleased branch (prepare-0.17-7) - when I use the latest released version (0.17.6) it panics
prepare-0.17-7
Sorry, something went wrong.
Sorry for the issue! Do you know if this is a regression from some earlier version?
I'm not sure I fully understand what the current behavior is, nor how you would expect it to behave in this case.
No branches or pull requests
When trying to
println
lengthy messages indicatif forces the terminal to "scroll up" and stop truncating the messages.To reproduce:
Recording:
recording.mp4
The text was updated successfully, but these errors were encountered: