Add suport for "standard" NO_COLOR env variable (#508)

See https://no-color.org
This commit is contained in:
lvgx 2020-04-05 03:56:18 +02:00 committed by GitHub
parent 6d13fce698
commit f14fb9c0f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

2
nnn.1
View File

@ -410,6 +410,8 @@ separated by \fI;\fR:
.Pp
\fBnnn:\fR this is a special variable set to the hovered entry before executing
a command from the command prompt or spawning a shell.
.Pp
\fBNO_COLOR:\fR if defined, disable ANSI color output.
.Sh KNOWN ISSUES
.Nm
may not handle keypresses correctly when used with tmux (see issue #104 for

View File

@ -1524,7 +1524,7 @@ static bool initcurses(void *oldmask)
#endif
curs_set(FALSE); /* Hide cursor */
if (!(g_states & STATE_NOCOLOR)) {
if (!(g_states & STATE_NOCOLOR || getenv("NO_COLOR"))) {
start_color();
use_default_colors();