diff options
author | toonn <toonn@toonn.io> | 2020-05-14 12:23:36 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2020-05-19 18:59:53 +0200 |
commit | c4124c1bd3b925546934f96a9852e88b2f1de313 (patch) | |
tree | db2e4c8286574318b50fa4c1458af2e3a5de6517 | |
parent | 7e167b638327620a870b423ac44fa834bf88592a (diff) | |
download | ranger-c4124c1bd3b925546934f96a9852e88b2f1de313.tar.gz |
Revert "Revert "ranger <path> can select files""
I can't reproduce the problems with <Right> and I don't see anything in the commit that could've caused them in the first place tbh. The issue this introduces keeps coming up so I'm verting the original change. Fixes #1655 Fixes #1386 This reverts commit 11549e2c0c73a8a0bb543801af4e134b3e076095.
-rw-r--r-- | ranger/core/tab.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ranger/core/tab.py b/ranger/core/tab.py index 1d5e69d4..7bb45d75 100644 --- a/ranger/core/tab.py +++ b/ranger/core/tab.py @@ -4,7 +4,7 @@ from __future__ import (absolute_import, division, print_function) import os -from os.path import abspath, normpath, join, expanduser, isdir +from os.path import abspath, normpath, join, expanduser, isdir, dirname import sys from ranger.container import settings @@ -123,9 +123,11 @@ class Tab(FileManagerAware, SettingsAware): # pylint: disable=too-many-instance # get the absolute path path = normpath(join(self.path, expanduser(path))) + selectfile = None if not isdir(path): - return False + selectfile = path + path = dirname(path) new_thisdir = self.fm.get_directory(path) try: @@ -155,6 +157,8 @@ class Tab(FileManagerAware, SettingsAware): # pylint: disable=too-many-instance self.thisdir.sort_directories_first = self.fm.settings.sort_directories_first self.thisdir.sort_reverse = self.fm.settings.sort_reverse self.thisdir.sort_if_outdated() + if selectfile: + self.thisdir.move_to_obj(selectfile) if previous and previous.path != path: self.thisfile = self.thisdir.pointed_obj else: |