diff options
-rw-r--r-- | ranger/core/actions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 1816867b..80b35970 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -411,6 +411,9 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): cwd.mark_item(f, False) for f in old - current - targets: cwd.mark_item(f, True) + if self.ui.pager.visible: + self.display_file() + def move_parent(self, n, narg=None): self.change_mode('normal') |