mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Use s in statusbar to indicate selection enabled
This commit is contained in:
parent
a8bca5f440
commit
4ffb42c73e
|
@ -4671,8 +4671,8 @@ static void statusbar(char *path)
|
||||||
if (cfg.blkorder) { /* du mode */
|
if (cfg.blkorder) { /* du mode */
|
||||||
xstrlcpy(buf, coolsize(dir_blocks << blk_shift), 12);
|
xstrlcpy(buf, coolsize(dir_blocks << blk_shift), 12);
|
||||||
|
|
||||||
mvprintw(xlines - 1, 0, "%d/%d [%d:%s] %cu:%s free:%s files:%lu %lldB %s",
|
mvprintw(xlines - 1, 0, "%d/%d [%s:%s] %cu:%s free:%s files:%lu %lldB %s",
|
||||||
cur + 1, ndents, cfg.selmode,
|
cur + 1, ndents, (cfg.selmode ? "s" : ""),
|
||||||
((g_states & STATE_RANGESEL) ? "*" : (nselected ? xitoa(nselected) : "")),
|
((g_states & STATE_RANGESEL) ? "*" : (nselected ? xitoa(nselected) : "")),
|
||||||
(cfg.apparentsz ? 'a' : 'd'), buf, coolsize(get_fs_info(path, FREE)),
|
(cfg.apparentsz ? 'a' : 'd'), buf, coolsize(get_fs_info(path, FREE)),
|
||||||
num_files, (ll)pent->blocks << blk_shift, ptr);
|
num_files, (ll)pent->blocks << blk_shift, ptr);
|
||||||
|
@ -4685,8 +4685,8 @@ static void statusbar(char *path)
|
||||||
strftime(buf, sizeof(buf), "%F %R", localtime(&pent->t));
|
strftime(buf, sizeof(buf), "%F %R", localtime(&pent->t));
|
||||||
buf[sizeof(buf)-1] = '\0';
|
buf[sizeof(buf)-1] = '\0';
|
||||||
|
|
||||||
mvprintw(xlines - 1, 0, "%d/%d [%d:%s] %s%s %s %s %s",
|
mvprintw(xlines - 1, 0, "%d/%d [%s:%s] %s%s %s %s %s",
|
||||||
cur + 1, ndents, cfg.selmode,
|
cur + 1, ndents, (cfg.selmode ? "s" : ""),
|
||||||
((g_states & STATE_RANGESEL) ? "*" : (nselected ? xitoa(nselected) : "")),
|
((g_states & STATE_RANGESEL) ? "*" : (nselected ? xitoa(nselected) : "")),
|
||||||
sort, buf, get_lsperms(pent->mode), coolsize(pent->size), ptr);
|
sort, buf, get_lsperms(pent->mode), coolsize(pent->size), ptr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue