]> Sergey Matveev's repositories - nnn.git/commitdiff
Show selected items in rm msg
authorLuuk van Baal <luukvbaal@gmail.com>
Thu, 8 Sep 2022 18:07:34 +0000 (20:07 +0200)
committerLuuk van Baal <luukvbaal@gmail.com>
Thu, 8 Sep 2022 18:07:34 +0000 (20:07 +0200)
Close https://github.com/jarun/nnn/issues/1479

src/nnn.c

index 77fe55a3ea5a264aa4c00b831ed2010c3fa2affa..098c564ac3fb70c9a113bb1c0d75f865c22b909e 100644 (file)
--- 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);