commit 91b8c405499bead2b9a0259bbeaf0e90381c8673 from: Stefan Sperling date: Sat Jan 25 10:42:22 2020 UTC tweak default colors for directories and symlinks in 'tog tree' commit - bfd30182c6619a969c33209accdca10d77af39f0 commit + 91b8c405499bead2b9a0259bbeaf0e90381c8673 blob - 8bb96582fbce1aebbc2f1d77510544ea3e8ee6b5 blob + eaedd62596e47aa25d6282eee093c8f0dea5accc --- tog/tog.1 +++ tog/tog.1 @@ -342,12 +342,12 @@ is used. .It Ev TOG_COLOR_TREE_SYMLINK The color used to mark up symbolic link tree entries. If not set, the default value -.Dq cyan +.Dq magenta is used. .It Ev TOG_COLOR_TREE_DIRECTORY The color used to mark up directory tree entries. If not set, the default value -.Dq blue +.Dq cyan is used. .It Ev TOG_COLOR_TREE_EXECUTABLE The color used to mark up executable file tree entries. blob - 6872cd369be3cb235e2eec27f69466fb53dd8fef blob + 77eb088348f4e16807aae3ee3636a691eb0df3b6 --- tog/tog.c +++ tog/tog.c @@ -194,9 +194,9 @@ default_color_value(const char *envvar) if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0) return COLOR_MAGENTA; if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0) - return COLOR_CYAN; + return COLOR_MAGENTA; if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0) - return COLOR_BLUE; + return COLOR_CYAN; if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0) return COLOR_GREEN; if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)