diff options
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r-- | ranger/core/actions.py | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index ac6cfc95..929dec31 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -542,16 +542,27 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): self.env.cut = False self.ui.browser.main_column.request_redraw() - def copy(self): + def copy(self, narg=None, dirarg=None): """Copy the selected items""" - - selected = self.env.get_selection() - self.env.copy = set(f for f in selected if f in self.env.cwd.files) + cwd = self.env.cwd + direction = Direction(dirarg or {}) + if direction.vertical(): + pos, selected = direction.select( + override=narg, lst=cwd.files, current=currentpos, + pagesize=self.env.termsize[0]) + else: + pos = currentpos + (narg or 0) + selected = (f for f in self.env.get_selection() if f in cwd.files) + self.env.copy = set(selected) + self.env.copy.add(self.env.cwd.pointed_obj) self.env.cut = False + self.env.cwd.pointer = pos + self.env.cwd.correct_pointer() + self.env.copy.add(self.env.cwd.pointed_obj) self.ui.browser.main_column.request_redraw() - def cut(self): - self.copy() + def cut(self, narg=None, dirarg=None): + self.copy(narg=narg, dirarg=dirarg) self.env.cut = True self.ui.browser.main_column.request_redraw() |