mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Honor -C for context colors
This commit is contained in:
parent
055652d979
commit
835f0c16d6
|
@ -81,6 +81,7 @@ It runs smoothly on the Pi, [Termux](https://www.youtube.com/watch?v=AbaauM7gUJw
|
||||||
- Static binary available (no need to install)
|
- Static binary available (no need to install)
|
||||||
- Minimal library deps, easy to compile
|
- Minimal library deps, easy to compile
|
||||||
- No config file, minimal config with sensible defaults
|
- No config file, minimal config with sensible defaults
|
||||||
|
- Plugin to backup configuration
|
||||||
- Widely available on many packagers
|
- Widely available on many packagers
|
||||||
- Touch enabled, comfortable on handhelds too!
|
- Touch enabled, comfortable on handhelds too!
|
||||||
- Unicode support
|
- Unicode support
|
||||||
|
|
|
@ -1697,7 +1697,7 @@ static bool initcurses(void *oldmask)
|
||||||
if (colors && *colors == '#') {
|
if (colors && *colors == '#') {
|
||||||
char *sep = strchr(colors, ';');
|
char *sep = strchr(colors, ';');
|
||||||
|
|
||||||
if (COLORS >= 256) {
|
if (!g_state.oldcolor && COLORS >= 256) {
|
||||||
++colors;
|
++colors;
|
||||||
ext = TRUE;
|
ext = TRUE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue