From ac037935475ba3e6589a27793adc94d58329b7e3 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 26 Aug 2017 09:37:04 +0530 Subject: [PATCH] A shorter overwrite message (key is not echoed) --- nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnn.c b/nnn.c index c7f4375c..b554f2bf 100644 --- a/nnn.c +++ b/nnn.c @@ -2606,7 +2606,7 @@ nochange: /* Check if another file with same name exists */ if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) { /* File with the same name exists */ - printprompt("Press 'y' to overwrite: "); + printprompt("Press 'y' to overwrite"); cleartimeout(); r = getch(); settimeout();