aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-03-30 02:45:46 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-03-30 02:45:46 +0530
commit3c941939926e4545c2a50bfa74ee45e67a04962a (patch)
treee6305caeb0ce191dc209cb15e4b0ae9c1aa8f719
parentc78e3bf14f0105234d52a8a0f1fc0548309949da (diff)
downloadnnn-3c941939926e4545c2a50bfa74ee45e67a04962a.tar.gz
Show number of entries in detailed view
-rw-r--r--README.md2
-rw-r--r--noice.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 63009e4..d4faa30 100644
--- a/README.md
+++ b/README.md
@@ -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)
diff --git a/noice.c b/noice.c
index 1af0e9a..61af0e0 100644
--- a/noice.c
+++ b/noice.c
@@ -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