diff options
author | hut <hut@lavabit.com> | 2011-09-29 03:30:36 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-09-29 03:31:20 +0200 |
commit | ef5fe778f88d43b8bee931cc3763ed0a63dba33b (patch) | |
tree | 31d40c117863c045d607500e6aa8e2a2f981ec20 /ranger | |
parent | 2a67562aa12d65a5918babb2d02801eb1687ef9d (diff) | |
download | ranger-ef5fe778f88d43b8bee931cc3763ed0a63dba33b.tar.gz |
core.actions: added narg to move_parent
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/core/actions.py | 4 |
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 |