\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.
+\fBNO_COLOR:\fR disable ANSI color output (overridden by \fBNNN_COLORS\fR).
.Sh KNOWN ISSUES
.Nm
may not handle keypresses correctly when used with tmux (see issue #104 for
#endif
curs_set(FALSE); /* Hide cursor */
- if (!getenv("NO_COLOR")) {
+ char *colors = getenv(env_cfg[NNN_COLORS]);
+
+ if (colors || !getenv("NO_COLOR")) {
short i;
- char *colors = xgetenv(env_cfg[NNN_COLORS], "4444");
+
+ if (!colors)
+ colors = "4444";
start_color();
use_default_colors();