diff options
| author | 2018-11-11 05:51:05 +0530 | |
|---|---|---|
| committer | 2018-11-11 05:51:05 +0530 | |
| commit | f41ed544d52e56c4a3abc37e0393d53fa8cc69e2 (patch) | |
| tree | 13cb298f1187139e5659ac780bba56028401d8a4 /src | |
| parent | 4407f29dd388ef38538642da28d325ca8076df00 (diff) | |
| download | nnn-f41ed544d52e56c4a3abc37e0393d53fa8cc69e2.tar.gz | |
Document native cp, mv, rm
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -1998,8 +1998,12 @@ static int show_help(char *path) "eF List archive\n" "d^F Extract archive\n" "6Space, ^K Copy file path\n" - "d^Y Toggle multi-copy\n" + "d^Y Toggle selection mode\n" "ey Show copy buffer\n" + "eP Copy selection\n" + "eV Move selection\n" + "d^X Delete selection\n" + "eX Delete entry\n" "d^T Toggle path quote\n" "d^L Redraw, clear prompt\n" "cEsc Exit prompt\n" @@ -2974,7 +2978,7 @@ nochange: * This ensures that when the first file path is * copied into memory (but not written to tmp file * yet to save on writes), the tmp file is cleared. - * The user may be in the middle of a multicopy op + * The user may be in the middle of selection mode op * and issue a cp, mv of multi-rm assuming the files * in the copy list would be affected. However, these * ops read the source file paths from the tmp file. @@ -3029,7 +3033,7 @@ nochange: copystartid = cur; copybufpos = 0; ncp = 0; - printmsg("multi-copy on"); + printmsg("selection on"); DPRINTF_S("copymode on"); goto nochange; } @@ -3062,13 +3066,13 @@ nochange: printmsg(newpath); } } else - printmsg("multi-copy off"); + printmsg("selection off"); goto nochange; case SEL_COPYLIST: if (copybufpos) showcplist(); else - printmsg("multi-copy off"); + printmsg("selection off"); goto nochange; case SEL_CP: case SEL_MV: |