aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.c
diff options
context:
space:
mode:
Diffstat (limited to 'nnn.c')
-rw-r--r--nnn.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/nnn.c b/nnn.c
index af1d7b6..ed5bd67 100644
--- a/nnn.c
+++ b/nnn.c
@@ -3078,10 +3078,14 @@ nochange:
printmsg("quotes off");
goto nochange;
case SEL_OPEN: // fallthrough
- case SEL_ARCHIVE: // fallthrough
+ case SEL_ARCHIVE:
+ if (ndents <= 0)
+ break; // fallthrough
case SEL_NEW:
if (sel == SEL_OPEN)
tmp = xreadline(NULL, "open with: ");
+ else if (sel == SEL_ARCHIVE)
+ tmp = xreadline(dents[cur].name, "name: ");
else
tmp = xreadline(NULL, "name: ");