about summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-09-08 19:42:48 +0200
committerhut <hut@lavabit.com>2011-09-08 19:42:48 +0200
commit82e00fd6f00c0202a36be49461d7a1151633c651 (patch)
tree5a73caeaaf5dd4b358c0deadd891c730ac17aa27 /ranger/core/actions.py
parent1b0782bbe6c5922d002a21644893f303e6c34ed2 (diff)
downloadranger-82e00fd6f00c0202a36be49461d7a1151633c651.tar.gz
core.actions: throw some signals before and after executing files
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index cb692d4c..3281964e 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -163,7 +163,11 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 		elif type(files) not in (list, tuple):
 			files = [files]
 
-		return self.run(files=list(files), **kw)
+		self.signal_emit('execute.before', keywords=kw)
+		try:
+			return self.run(files=list(files), **kw)
+		finally:
+			self.signal_emit('execute.after')
 
 	# --------------------------
 	# -- Moving Around