Procházet zdrojové kódy

Show file name for easier archive naming

master
Arun Prakash Jana před 6 roky
rodič
revize
e1fa88b24d
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 8 přidání a 5 odebrání
  1. +8
    -5
      src/nnn.c

+ 8
- 5
src/nnn.c Zobrazit soubor

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


Načítá se…
Zrušit
Uložit