aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.txt4
-rw-r--r--dfm.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.txt b/README.txt
index 0971a58..e10fdc7 100644
--- a/README.txt
+++ b/README.txt
@@ -195,7 +195,7 @@ at the actions each key is bound to.
The statusline is as follows:
- 1/1 [RnHE] [1 marked] ~0B /path/to/current/directory/<query>
+ 1/1 [RnHE] [1+] ~0B /path/to/current/directory/<query>
1/1 - The entry number under the cursor and the total visible entries.
@@ -211,7 +211,7 @@ The statusline is as follows:
check the alternate buffer (bound to 'z' by default) to see
the error messages left by the command failure.
- [1 marked] - Number of marked files, hidden when 0.
+ [1+] - Number of marked files, hidden when 0.
~0B - Approximate size of directory (shallow, excludes sub-directories).
diff --git a/dfm.c b/dfm.c
index 19d1043..9fc3f6d 100644
--- a/dfm.c
+++ b/dfm.c
@@ -1326,7 +1326,7 @@ fm_draw_inf(struct fm *p)
if (p->vml) {
STR_PUSH(&p->io, DFM_COL_NAV_MARK " ");
str_push_u32(&p->io, p->vml);
- STR_PUSH(&p->io, " marked " VT_SGR0);
+ STR_PUSH(&p->io, "+ " VT_SGR0);
str_push(&p->io, c.d, c.l);
str_push_c(&p->io, ' ');
}