Show file name for easier archive naming

This commit is contained in:
Arun Prakash Jana 2019-02-07 18:37:45 +05:30
parent af7e88ab5e
commit e1fa88b24d
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 8 additions and 5 deletions

View File

@ -3645,13 +3645,16 @@ nochange:
switch (sel) { switch (sel) {
case SEL_ARCHIVE: case SEL_ARCHIVE:
r = get_input("archive selection (else current)? [s]"); r = get_input("archive selection (else current)? [s]");
if (r == 's' && !cpsafe()) if (r == 's') {
goto nochange; if (!cpsafe())
else if (!ndents) { goto nochange;
tmp = NULL;
} else if (!ndents) {
printmsg("no files"); printmsg("no files");
goto nochange; goto nochange;
} } else
tmp = xreadline(NULL, "archive name: "); tmp = dents[cur].name;
tmp = xreadline(tmp, "archive name: ");
break; break;
case SEL_OPENWITH: case SEL_OPENWITH:
tmp = xreadline(NULL, "open with: "); tmp = xreadline(NULL, "open with: ");