From 4f57e0df37cf136eea4e3ddd5f864803b873c765 Mon Sep 17 00:00:00 2001 From: Luuk van Baal Date: Thu, 8 Sep 2022 20:07:34 +0200 Subject: [PATCH] Show selected items in rm msg Close https://github.com/jarun/nnn/issues/1479 --- src/nnn.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 77fe55a3..098c564a 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -634,7 +634,7 @@ static const char * const messages[] = { "session name: ", "'c'p/'m'v as?", "'c'urrent/'s'el?", - "%s %s? [Esc cancels]", + "%s %s%s? [Esc cancels]", "size limit exceeded", "'f'ile/'d'ir/'s'ym/'h'ard?", "'c'li/'g'ui?", @@ -1429,7 +1429,8 @@ static char confirm_force(bool selection) snprintf(str, 64, messages[MSG_FORCE_RM], g_state.trash ? utils[UTIL_GIO_TRASH] + 4 : utils[UTIL_RM_RF], - (selection ? "selection" : "hovered")); + (selection ? "selected " : "hovered"), + (selection ? xitoa(nselected) : "")); int r = get_input(str);