diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-02-06 03:21:30 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-02-06 03:21:43 +0530 |
commit | cc1c694e90bf1b314ca9f5f489c3f38ce3dc1061 (patch) | |
tree | 2dc10e501ee1e82c4dd0222f2427ae7ec62de55d /src | |
parent | 0153e508f54c8acbee87bf10a9c364243c35b44d (diff) | |
download | nnn-cc1c694e90bf1b314ca9f5f489c3f38ce3dc1061.tar.gz |
Just print the filepath
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3491,8 +3491,8 @@ nochange: if (copier) spawn(copier, NULL, NULL, NULL, F_NOTRACE); } - mvprintw(LINES - 1, 0, "selected %s%s\n", - (!cfg.copymode&&copier) ? "and copied " : "" , newpath); + + printmsg(newpath); goto nochange; case SEL_COPYMUL: cfg.copymode ^= 1; |