Enable ANSI support on Windows 10

pull/114/head
sharkdp 6 years ago committed by David Peter
parent 3ee0e56315
commit ca865f9d26

@ -15,6 +15,9 @@ impl App {
pub fn new() -> Self { pub fn new() -> Self {
let interactive_output = atty::is(Stream::Stdout); let interactive_output = atty::is(Stream::Stdout);
#[cfg(windows)]
let interactive_output = interactive_output && ansi_term::enable_ansi_support().is_ok();
App { App {
matches: Self::matches(interactive_output), matches: Self::matches(interactive_output),
interactive_output, interactive_output,

Loading…
Cancel
Save