summary refs log tree commit diff stats
path: root/ranger
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
parent1b0782bbe6c5922d002a21644893f303e6c34ed2 (diff)
downloadranger-82e00fd6f00c0202a36be49461d7a1151633c651.tar.gz
core.actions: throw some signals before and after executing files
Diffstat (limited to 'ranger')
-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
134' href='#n134'>134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268