diff options
| -rw-r--r-- | README.txt | 4 | ||||
| -rw-r--r-- | dfm.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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). @@ -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, ' '); } |