diff options
author | Christoph <git.christoph@web.de> | 2019-02-05 22:13:05 +0100 |
---|---|---|
committer | Christoph <git.christoph@web.de> | 2019-02-05 22:13:05 +0100 |
commit | 477d5a70eb1b210919cb09908fa81fad0b6d340c (patch) | |
tree | 0f7bd6e28bff3eb14495e7ab802fe5fe77b02ad4 /src | |
parent | 22b95be8106e26c81b09a8442aee6d1494a9fe68 (diff) | |
download | nnn-477d5a70eb1b210919cb09908fa81fad0b6d340c.tar.gz |
Clarify the difference between copy and select.
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -3493,7 +3493,8 @@ nochange: if (copier) spawn(copier, NULL, NULL, NULL, F_NOTRACE); } - printmsg(newpath); + mvprintw(LINES - 1, 0, "selected %s%s\n", + (!cfg.copymode&&copier) ? "and copied " : "" , newpath); goto nochange; case SEL_COPYMUL: cfg.copymode ^= 1; @@ -3543,7 +3544,7 @@ nochange: dents[r].name, newpath))) goto nochange; - mvprintw(LINES - 1, 0, "%d files copied\n", + mvprintw(LINES - 1, 0, "%d files selected\n", copyendid - copystartid + 1); } } @@ -3554,7 +3555,7 @@ nochange: spawn(copier, NULL, NULL, NULL, F_NOTRACE); if (ncp) /* Some files cherry picked */ - mvprintw(LINES - 1, 0, "%d files copied\n", ncp); + mvprintw(LINES - 1, 0, "%d files selected\n", ncp); } else printmsg("selection off"); goto nochange; |