Function anstyle_query::clicolor

source ·
pub fn clicolor() -> Option<bool>
Expand description

Check CLICOLOR status

  • When true, ANSI colors are supported and should be used when the program isn’t piped, similar to term_supports_color
  • When false, don’t output ANSI color escape codes, similar to no_color

See also:

Examples found in repository?
examples/query.rs (line 4)
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());
}