From e5074ebc837dd0ca8b3e504227e8c2fc6173460b Mon Sep 17 00:00:00 2001 From: NRK Date: Wed, 12 Oct 2022 00:46:17 +0600 Subject: [PATCH] prefill the prompt when there's a single target Fixes: #1505 #1282 #1345 --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 9010351d..e216b686 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -7538,7 +7538,7 @@ nochange: if (r == 'f' || r == 'd') tmp = xreadline(NULL, messages[MSG_NEW_PATH]); else if (r == 's' || r == 'h') - tmp = xreadline(NULL, + tmp = xreadline(nselected == 1 ? xbasename(pselbuf) : NULL, messages[nselected <= 1?MSG_NEW_PATH:MSG_LINK_PREFIX]); else tmp = NULL;