diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | noice.c | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -44,7 +44,7 @@ I chose to fork noice because: ### Fork toppings - Behaviour and navigation - - Optional detail view with file type and size (default: disabled) + - Detail view with file type, size and number of entries in dir (default: disabled) - Case-insensitive alphabetic content listing instead of upper case first - Roll over at the first and last entries of a directory (with Up/Down keys) - Sort entries by file size (largest to smallest) @@ -616,6 +616,11 @@ redraw(char *path) for (i = cur - nlines; i < cur + nlines + odd; i++) printptr(&dents[i], i == cur); } + + if (showdetail) { + sprintf(cwd, "%d items", ndents); + printmsg(cwd); + } } void |