Merge pull request #1507 from N-R-K/prompt_prefill

prefill the prompt when there's a single target
This commit is contained in:
Arun 2022-10-12 06:04:20 +05:30 committed by GitHub
commit 0c4180f2d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;