Function anstyle_query::no_color

source ·
pub fn no_color() -> bool
Expand description

Check NO_COLOR status

When true, should prevent the addition of ANSI color.

User-level configuration files and per-instance command-line arguments should override NO_COLOR. A user should be able to export $NO_COLOR in their shell configuration file as a default, but configure a specific program in its configuration file to specifically enable color.

Examples found in repository?
examples/query.rs (line 6)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
fn main() {
    println!("clicolor: {:?}", anstyle_query::clicolor());
    println!("clicolor_force: {}", anstyle_query::clicolor_force());
    println!("no_color: {}", anstyle_query::no_color());
    println!(
        "term_supports_ansi_color: {}",
        anstyle_query::term_supports_ansi_color()
    );
    println!(
        "term_supports_color: {}",
        anstyle_query::term_supports_color()
    );
    println!("truecolor: {}", anstyle_query::truecolor());
    println!(
        "enable_ansi_colors: {:?}",
        anstyle_query::windows::enable_ansi_colors()
    );
    #[cfg(windows)]
    println!(
        "  enable_virtual_terminal_processing: {:?}",
        anstyle_query::windows::enable_virtual_terminal_processing()
    );
    println!("is_ci: {:?}", anstyle_query::is_ci());
}