From 94e4dc51ba7ebcbdaf94dc3bb20c59ee22dc84e5 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 5 Nov 2019 19:52:07 +0530 Subject: [PATCH] Make bulk delete more verbose --- src/nnn.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 1e4017bb..675d8208 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -621,7 +621,11 @@ static void xdelay(void) static char confirm_force(void) { - int r = get_input("use force? [y/Y confirms]"); + char str[64] = {0}; + int r; + + snprintf(str, 64, "forcibly remove %d files (UNRECOVERABLE)? [y/Y confirms]", nselected); + r = get_input(str); if (r == 'y' || r == 'Y') return 'f'; /* forceful */ @@ -1303,7 +1307,6 @@ static void xrm(char *path) else { char rm_opts[] = "-ir"; - rm_opts[1] = confirm_force(); spawn("rm", rm_opts, path, NULL, F_NORMAL); } }