mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
Let user switch to detail mode in case of few columns
This commit is contained in:
parent
6709ac01ad
commit
2d72465e7b
|
@ -2740,7 +2740,6 @@ static void redraw(char *path)
|
||||||
static char buf[NAME_MAX + 65] __attribute__ ((aligned));
|
static char buf[NAME_MAX + 65] __attribute__ ((aligned));
|
||||||
size_t ncols = COLS;
|
size_t ncols = COLS;
|
||||||
int nlines = MIN(LINES - 4, ndents), i, attrs;
|
int nlines = MIN(LINES - 4, ndents), i, attrs;
|
||||||
bool mode_changed = FALSE;
|
|
||||||
|
|
||||||
/* Clear screen */
|
/* Clear screen */
|
||||||
erase();
|
erase();
|
||||||
|
@ -2806,10 +2805,9 @@ static void redraw(char *path)
|
||||||
attroff(A_UNDERLINE);
|
attroff(A_UNDERLINE);
|
||||||
|
|
||||||
/* Fallback to light mode if less than 35 columns */
|
/* Fallback to light mode if less than 35 columns */
|
||||||
if (ncols < 41 && cfg.showdetail) {
|
if (ncols < 35 && cfg.showdetail) {
|
||||||
cfg.showdetail ^= 1;
|
cfg.showdetail ^= 1;
|
||||||
printptr = &printent;
|
printptr = &printent;
|
||||||
mode_changed = TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Calculate the number of cols available to print entry name */
|
/* Calculate the number of cols available to print entry name */
|
||||||
|
@ -2877,11 +2875,6 @@ static void redraw(char *path)
|
||||||
} else
|
} else
|
||||||
printmsg("0/0");
|
printmsg("0/0");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mode_changed) {
|
|
||||||
cfg.showdetail ^= 1;
|
|
||||||
printptr = &printent_long;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void browse(char *ipath)
|
static void browse(char *ipath)
|
||||||
|
|
Loading…
Reference in a new issue