aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nnn.12
-rw-r--r--src/nnn.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/nnn.1 b/nnn.1
index 86c879c..b7dcf02 100644
--- a/nnn.1
+++ b/nnn.1
@@ -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
diff --git a/src/nnn.c b/src/nnn.c
index 20f42b6..6e55389 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -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();