diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-06-20 02:13:59 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-06-20 02:13:59 +0530 |
commit | a4c38d85477ff889b2aa863e2a5b18c72dd266fb (patch) | |
tree | 808ed017cbfeea2493f314b42db3fdd6b1573d9a | |
parent | 25413dfe236249b33c11f9cb2e7e45a52cc6723e (diff) | |
download | nnn-a4c38d85477ff889b2aa863e2a5b18c72dd266fb.tar.gz |
Fix #287
-rw-r--r-- | src/nnn.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |