Parcourir la source

File colors is independent of context colors

master
Arun Prakash Jana il y a 4 ans
Parent
révision
5e3a793480
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: A75979F35C080412
1 fichiers modifiés avec 9 ajouts et 8 suppressions
  1. +9
    -8
      src/nnn.c

+ 9
- 8
src/nnn.c Voir le fichier

@@ -1661,11 +1661,14 @@ static bool initcurses(void *oldmask)
use_default_colors();

/* Initialize file colors */
if (COLORS >= 256 && !(g_state.oldcolor || init_fcolors())) {
exitcurses();
fprintf(stderr, "NNN_FCOLORS!\n");
return FALSE;
}
if (COLORS >= 256) {
if (!(g_state.oldcolor || init_fcolors())) {
exitcurses();
fprintf(stderr, "NNN_FCOLORS!\n");
return FALSE;
}
} else
g_state.oldcolor = 1;

if (colors && *colors == '#') {
char *sep = strchr(colors, ';');
@@ -1685,10 +1688,8 @@ static bool initcurses(void *oldmask)
colors = sep; /* Detect if 8 colors fallback is appended */
if (colors)
++colors;
g_state.oldcolor = 1;
}
} else
g_state.oldcolor = 1;
}

/* Get and set the context colors */
for (uchar i = 0; i < CTX_MAX; ++i) {


Chargement…
Annuler
Enregistrer