5BB266P6HPUGYEVR7QNNOA62EFPYPUYJ3UMLE5J3LLYMSUWXANIQC
}
}
}
pub fn is_colored() -> bool {
let mut colors = atty::is(atty::Stream::Stdout);
if let Ok(global) = crate::config::Global::load() {
match global.colors {
Some(crate::config::Choice::Always) => colors = true,
Some(crate::config::Choice::Never) => colors = false,
_ => {}
}
match global.pager {
Some(crate::config::Choice::Never) => colors = false,
_ => {
super::pager();
}