diff options
author | hut <hut@lavabit.com> | 2012-12-14 12:01:32 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2012-12-14 12:01:32 +0100 |
commit | 5a5b5d9adc69fe0051e24b2be48a8bd8170d5226 (patch) | |
tree | 89de05ca0b0183efad6698033ec00ab93affe21c | |
parent | 56d1eb636c7b8644729b6e50ad4fac7903b18849 (diff) | |
download | ranger-5a5b5d9adc69fe0051e24b2be48a8bd8170d5226.tar.gz |
core.actions: make macros %F/%S work with new tab system
-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: |