diff options
-rw-r--r-- | ranger/defaults/apps.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py index 8c766419..1f2f751c 100644 --- a/ranger/defaults/apps.py +++ b/ranger/defaults/apps.py @@ -140,8 +140,7 @@ class CustomApplications(Applications): if c.mode in arg: # mode 1, 2 and 3 will set the image as the background return tup('feh', arg[c.mode], c.file.path) if c.mode is 11 and len(c.files) is 1: # view all files in the cwd - directory = self.fm.env.get_directory(c.file.dirname) - images = (f.basename for f in directory.files if f.image) + images = (f.basename for f in self.fm.env.cwd.files if f.image) return tup('feh', '--start-at', c.file.basename, *images) return tup('feh', *c) |