A better case name

This commit is contained in:
Arun Prakash Jana 2018-12-16 20:30:44 +05:30
parent cc34b977da
commit 836325f0d4
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 6 additions and 6 deletions

View File

@ -3229,7 +3229,7 @@ nochange:
goto begin; goto begin;
} }
case SEL_ARCHIVE: // fallthrough case SEL_ARCHIVE: // fallthrough
case SEL_OPEN: // fallthrough case SEL_OPENWITH: // fallthrough
case SEL_RENAME: case SEL_RENAME:
if (!ndents) if (!ndents)
break; // fallthrough break; // fallthrough
@ -3239,7 +3239,7 @@ nochange:
case SEL_ARCHIVE: case SEL_ARCHIVE:
tmp = xreadline(dents[cur].name, "name: "); tmp = xreadline(dents[cur].name, "name: ");
break; break;
case SEL_OPEN: case SEL_OPENWITH:
tmp = xreadline(NULL, "open with: "); tmp = xreadline(NULL, "open with: ");
break; break;
case SEL_NEW: case SEL_NEW:
@ -3260,7 +3260,7 @@ nochange:
} }
/* Confirm if app is CLI or GUI */ /* Confirm if app is CLI or GUI */
if (sel == SEL_OPEN) { if (sel == SEL_OPENWITH) {
r = get_input("press 'c' for cli mode"); r = get_input("press 'c' for cli mode");
(r == 'c') ? (r = F_NORMAL) : (r = F_NOWAIT | F_NOTRACE); (r == 'c') ? (r = F_NORMAL) : (r = F_NOWAIT | F_NOTRACE);
} }
@ -3275,7 +3275,7 @@ nochange:
spawn(utils[APACK], tmp, dents[cur].name, path, F_NORMAL); spawn(utils[APACK], tmp, dents[cur].name, path, F_NORMAL);
break; break;
case SEL_OPEN: case SEL_OPENWITH:
getprogarg(tmp, &dir); /* dir used as tmp var */ getprogarg(tmp, &dir); /* dir used as tmp var */
mkpath(path, dents[cur].name, newpath, PATH_MAX); mkpath(path, dents[cur].name, newpath, PATH_MAX);
spawn(tmp, dir, newpath, path, r); spawn(tmp, dir, newpath, path, r);

View File

@ -74,7 +74,7 @@ enum action {
SEL_MV, SEL_MV,
SEL_RMMUL, SEL_RMMUL,
SEL_RM, SEL_RM,
SEL_OPEN, SEL_OPENWITH,
SEL_NEW, SEL_NEW,
SEL_RENAME, SEL_RENAME,
SEL_RENAMEALL, SEL_RENAMEALL,
@ -199,7 +199,7 @@ static struct key bindings[] = {
/* Delete currently selected */ /* Delete currently selected */
{ CONTROL('X'), SEL_RM }, { CONTROL('X'), SEL_RM },
/* Open in a custom application */ /* Open in a custom application */
{ CONTROL('O'), SEL_OPEN }, { CONTROL('O'), SEL_OPENWITH },
/* Create a new file */ /* Create a new file */
{ 'n', SEL_NEW }, { 'n', SEL_NEW },
/* Show rename prompt */ /* Show rename prompt */