diff options
-rwxr-xr-x | ranger/config/commands.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index b88d1e24..f86dad2b 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1198,11 +1198,8 @@ class scout(Command): self.cancel() if self.OPEN_ON_ENTER in flags or \ - self.AUTO_OPEN in flags and count == 1: - if os.path.exists(pattern): - self.fm.cd(pattern) - else: - self.fm.move(right=1) + (self.AUTO_OPEN in flags and count == 1): + self.fm.move(right=1) if self.KEEP_OPEN in flags and thisdir != self.fm.thisdir: # reopen the console: |