mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Show size of file in bytes in status bar in du mode
This commit is contained in:
parent
7416bb8503
commit
ef8db1fd45
|
@ -182,6 +182,7 @@
|
||||||
|
|
||||||
/* TYPE DEFINITIONS */
|
/* TYPE DEFINITIONS */
|
||||||
typedef unsigned long ulong;
|
typedef unsigned long ulong;
|
||||||
|
typedef unsigned long long ull;
|
||||||
typedef unsigned int uint;
|
typedef unsigned int uint;
|
||||||
typedef unsigned char uchar;
|
typedef unsigned char uchar;
|
||||||
typedef unsigned short ushort;
|
typedef unsigned short ushort;
|
||||||
|
@ -3928,9 +3929,10 @@ static void redraw(char *path)
|
||||||
xstrlcpy(buf, coolsize(dir_blocks << blk_shift), 12);
|
xstrlcpy(buf, coolsize(dir_blocks << blk_shift), 12);
|
||||||
c = cfg.apparentsz ? 'a' : 'd';
|
c = cfg.apparentsz ? 'a' : 'd';
|
||||||
|
|
||||||
mvprintw(lastln, 0, "%d/%d (%d) %cu:%s free:%s files:%lu %s",
|
mvprintw(lastln, 0, "%d/%d (%d) %cu:%s free:%s files:%lu %lluB %s",
|
||||||
cur + 1, ndents, nselected, c, buf,
|
cur + 1, ndents, nselected, c, buf,
|
||||||
coolsize(get_fs_info(path, FREE)), num_files, ptr);
|
coolsize(get_fs_info(path, FREE)), num_files,
|
||||||
|
(ull)(pent->blocks << blk_shift), ptr);
|
||||||
} else { /* light or detail mode */
|
} else { /* light or detail mode */
|
||||||
/* Show filename as it may be truncated in directory listing */
|
/* Show filename as it may be truncated in directory listing */
|
||||||
/* Get the unescaped file name */
|
/* Get the unescaped file name */
|
||||||
|
|
Loading…
Reference in a new issue