aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-06-20 02:13:59 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-06-20 02:13:59 +0530
commita4c38d85477ff889b2aa863e2a5b18c72dd266fb (patch)
tree808ed017cbfeea2493f314b42db3fdd6b1573d9a
parent25413dfe236249b33c11f9cb2e7e45a52cc6723e (diff)
downloadnnn-a4c38d85477ff889b2aa863e2a5b18c72dd266fb.tar.gz
Fix #287
-rw-r--r--src/nnn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 8c99f84..d0a549c 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -598,7 +598,7 @@ static void xdelay(void)
static char confirm_force(void)
{
- int r = get_input("use force? [y/Y]");
+ int r = get_input("use force? [y/Y confirms]");
if (r == 'y' || r == 'Y')
return 'f'; /* forceful */
@@ -3950,7 +3950,7 @@ nochange:
{
switch (sel) {
case SEL_ARCHIVE:
- r = get_input("archive selection (else current)? [y/Y]");
+ r = get_input("archive selection (else current)? [y/Y confirms]");
if (r == 'y' || r == 'Y') {
if (!cpsafe()) {
presel = MSGWAIT;
@@ -3993,7 +3993,7 @@ nochange:
/* Confirm if app is CLI or GUI */
if (sel == SEL_OPENWITH) {
- r = get_input("cli mode? [y/Y]");
+ r = get_input("cli mode? [y/Y confirms]");
(r == 'y' || r == 'Y') ? (r = F_CLI)
: (r = F_NOWAIT | F_NOTRACE | F_MULTI);
}
@@ -4052,7 +4052,7 @@ nochange:
if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) {
if (sel == SEL_RENAME) {
/* Overwrite file with same name? */
- r = get_input("overwrite? [y/Y]");
+ r = get_input("overwrite? [y/Y confirms]");
if (r != 'y' && r != 'Y') {
close(fd);
break;