Skip to content

Commit

Permalink
honor the NO_COLOR env var
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Parfitt committed Mar 19, 2020
1 parent fc924d2 commit 053ec16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ complete (and more colorful) variants, see
[here](https://github.com/seebi/dircolors-solarized) or
[here](https://github.com/trapd00r/LS_COLORS).

`fd` also honors the [NO_COLOR](https://no-color.org/) environment variable.

## Parallel command execution
If the `-x`/`--exec` option is specified alongside a command template, a job pool will be created
for executing commands in parallel for each discovered path as the input. The syntax for generating
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ fn main() {
let colored_output = match matches.value_of("color") {
Some("always") => true,
Some("never") => false,
_ => atty::is(Stream::Stdout),
_ => !env::var_os("NO_COLOR").is_some() && atty::is(Stream::Stdout),
};

let path_separator = matches.value_of("path-separator").map(|str| str.to_owned());
Expand Down

0 comments on commit 053ec16

Please sign in to comment.