aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/nnn.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 3b1dfd1..429589e 100644
--- a/README.md
+++ b/README.md
@@ -171,7 +171,7 @@ To cook yourself, download the [latest stable release](https://github.com/jarun/
$ sudo apt-get install pkg-config libncursesw5-dev libreadline6-dev
$ make
- $ sudo make install
+ $ sudo make strip install
`PREFIX` is supported, in case you want to install to a different location.
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;