diff options
-rw-r--r-- | ranger/core/actions.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 6c144410..4b1b9f29 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -267,12 +267,12 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): if next_tab_dir: macros['D'] = str(next_tab_dir.path) - if next_tab_dir.pointed_obj: - macros['F'] = next_tab_dir.pointed_obj.path + if next_tab.thisfile: + macros['F'] = next_tab.thisfile.path else: macros['F'] = MACRO_FAIL if next_tab_dir.get_selection(): - macros['S'] = [fl.path for fl in next_tab_dir.get_selection()] + macros['S'] = [fl.path for fl in next_tab.get_selection()] else: macros['S'] = MACRO_FAIL else: |