Browse Source

Make NNN_COLORS override NO_COLORS (#515)

master
lvgx GitHub 5 years ago
parent
commit
a6cef2504c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions
  1. +1
    -1
      nnn.1
  2. +6
    -2
      src/nnn.c

+ 1
- 1
nnn.1 View File

@@ -417,7 +417,7 @@ separated by \fI;\fR:
\fBnnn:\fR this is a special variable set to the hovered entry before executing \fBnnn:\fR this is a special variable set to the hovered entry before executing
a command from the command prompt or spawning a shell. a command from the command prompt or spawning a shell.
.Pp .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 .Sh KNOWN ISSUES
.Nm .Nm
may not handle keypresses correctly when used with tmux (see issue #104 for may not handle keypresses correctly when used with tmux (see issue #104 for


+ 6
- 2
src/nnn.c View File

@@ -1494,9 +1494,13 @@ static bool initcurses(void *oldmask)
#endif #endif
curs_set(FALSE); /* Hide cursor */ curs_set(FALSE); /* Hide cursor */


if (!getenv("NO_COLOR")) { char *colors = getenv(env_cfg[NNN_COLORS]);

if (colors || !getenv("NO_COLOR")) {
short i; short i;
char *colors = xgetenv(env_cfg[NNN_COLORS], "4444"); if (!colors)
colors = "4444";


start_color(); start_color();
use_default_colors(); use_default_colors();


||||||
x
 
000:0
Loading…
Cancel
Save