diff options
-rw-r--r-- | ranger/config/rc.conf | 2 | ||||
-rw-r--r-- | ranger/ext/papermanager.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ranger/config/rc.conf b/ranger/config/rc.conf index 34ee2fad..9514c55f 100644 --- a/ranger/config/rc.conf +++ b/ranger/config/rc.conf @@ -176,7 +176,7 @@ set idle_delay 2000 # In the paper manger mode, should ranger try to find the ".paperinfo" file in # directories above the current directory? -set papermanager_deep_search true +set papermanager_deep_search false # =================================================================== # == Local Options diff --git a/ranger/ext/papermanager.py b/ranger/ext/papermanager.py index c01ea784..059f051f 100644 --- a/ranger/ext/papermanager.py +++ b/ranger/ext/papermanager.py @@ -15,7 +15,7 @@ The columns are: """ PAPERINFO_FILE_NAME = ".paperinfo" -DEEP_SEARCH_DEFAULT = True +DEEP_SEARCH_DEFAULT = False import csv from os.path import join, dirname, exists, basename |