about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2019-09-10 20:04:15 +0200
committertoonn <toonn@toonn.io>2019-09-10 20:04:15 +0200
commit86281229606e147870b365d7aff445e394883674 (patch)
tree86e81177bca50f2cd1d9ed2e14d5d7f04471afd4
parent02198a6d5e0ecefa30ca4f6c5734276528b36dd7 (diff)
parent617c36064a083f15b477f95efa009c84836f975e (diff)
downloadranger-86281229606e147870b365d7aff445e394883674.tar.gz
Merge branch 'vifon-verbose-delete'
-rw-r--r--ranger/core/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 435fcf13..25b01e2c 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -1607,10 +1607,10 @@ class Actions(  # pylint: disable=too-many-instance-attributes,too-many-public-m
 
     def delete(self, files=None):
         # XXX: warn when deleting mount points/unseen marked files?
-        self.notify("Deleting!")
         # COMPAT: old command.py use fm.delete() without arguments
         if files is None:
             files = (fobj.path for fobj in self.thistab.get_selection())
+        self.notify("Deleting {}!".format(", ".join(files)))
         files = [os.path.abspath(path) for path in files]
         for path in files:
             # Untag the deleted files.