From af3d0a69bcb07e2e42bc7fd7a3d4a5277ef8b246 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 19 Jul 2018 04:44:24 +0530 Subject: [PATCH] Show selection name in archive option --- nnn.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nnn.c b/nnn.c index af1d7b6d..ed5bd670 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: ");