Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/anstyle-progress/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
//! ANSI escape code progress reporting (OSC 9;4)
//!
//! For details on the protocol, see
//! [ConEmu's docs](https://conemu.github.io/en/AnsiEscapeCodes.html#ConEmu_specific_OSC)
//! [ConEmu's docs](https://conemu.github.io/en/AnsiEscapeCodes.html#ConEmu_specific_OSC),
//! [Tutorial: Set the progress bar in the Windows Terminal](https://learn.microsoft.com/en-us/windows/terminal/tutorials/progress-bar-sequences)

#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg))]
Expand Down
1 change: 1 addition & 0 deletions crates/anstyle-progress/src/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ impl Default for TermProgress {
#[derive(Copy, Clone)]
pub enum TermProgressStatus {
Normal,
/// Some terminals treat this as a Warning
Paused,
Error,
}
Expand Down
Loading