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-29 03:30:36 +0200
committerhut <hut@lavabit.com>2011-09-29 03:31:20 +0200
commitef5fe778f88d43b8bee931cc3763ed0a63dba33b (patch)
tree31d40c117863c045d607500e6aa8e2a2f981ec20 /ranger/core/actions.py
parent2a67562aa12d65a5918babb2d02801eb1687ef9d (diff)
downloadranger-ef5fe778f88d43b8bee931cc3763ed0a63dba33b.tar.gz
core.actions: added narg to move_parent
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 59aac65c..4353aabf 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -226,7 +226,9 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 						pagesize=self.ui.browser.hei)
 				cwd.move(to=newpos)
 
-	def move_parent(self, n):
+	def move_parent(self, n, narg=None):
+		if narg is not None:
+			n *= narg
 		parent = self.env.at_level(-1)
 		if parent.pointer + n < 0:
 			n = 0 - parent.pointer