瀏覽代碼

Initialize file type colors as default

master
Arun Prakash Jana 4 年之前
父節點
當前提交
8ddc659df8
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: A75979F35C080412
共有 1 個文件被更改,包括 7 次插入6 次删除
  1. +7
    -6
      src/nnn.c

+ 7
- 6
src/nnn.c 查看文件

@@ -1660,6 +1660,13 @@ static bool initcurses(void *oldmask)
start_color();
use_default_colors();

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

if (colors && *colors == '#') {
char *sep = strchr(colors, ';');

@@ -1674,12 +1681,6 @@ static bool initcurses(void *oldmask)
*/
if (sep)
*sep = '\0';

if (!(g_state.oldcolor || init_fcolors())) {
exitcurses();
fprintf(stderr, "NNN_FCOLORS!\n");
return FALSE;
}
} else {
colors = sep; /* Detect if 8 colors fallback is appended */
if (colors)


Loading…
取消
儲存