diff options
author | daizeng1984 <daizeng1984@gmail.com> | 2017-06-07 22:46:32 +0800 |
---|---|---|
committer | daizeng1984 <daizeng1984@gmail.com> | 2017-06-07 22:46:32 +0800 |
commit | 2d366e4f0f80fb845d940afb307281268ee94530 (patch) | |
tree | 0ebf8db3a5d0a015c85eda3b11b4f6f884840d10 /ranger | |
parent | 7548d13090ea0fb0f2e42be15413f60c6380e81d (diff) | |
download | ranger-2d366e4f0f80fb845d940afb307281268ee94530.tar.gz |
Switch the order of experimental plugin loading and rc.conf sourcing
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/core/main.py | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/ranger/core/main.py b/ranger/core/main.py index 38513970..9a0fe59f 100644 --- a/ranger/core/main.py +++ b/ranger/core/main.py @@ -350,19 +350,6 @@ def load_settings( # pylint: disable=too-many-locals,too-many-branches,too-many LOG.debug("Loaded custom commands from '%s'", custom_comm_path) sys.dont_write_bytecode = old_bytecode_setting - allow_access_to_confdir(ranger.args.confdir, False) - - # Load rc.conf - custom_conf = fm.confpath('rc.conf') - default_conf = fm.relpath('config', 'rc.conf') - - if os.environ.get('RANGER_LOAD_DEFAULT_RC', 'TRUE').upper() != 'FALSE': - fm.source(default_conf) - if os.access(custom_conf, os.R_OK): - fm.source(custom_conf) - - allow_access_to_confdir(ranger.args.confdir, True) - # XXX Load plugins (experimental) plugindir = fm.confpath('plugins') try: @@ -399,6 +386,15 @@ def load_settings( # pylint: disable=too-many-locals,too-many-branches,too-many ranger.fm = None allow_access_to_confdir(ranger.args.confdir, False) + # Load rc.conf + custom_conf = fm.confpath('rc.conf') + default_conf = fm.relpath('config', 'rc.conf') + + if os.environ.get('RANGER_LOAD_DEFAULT_RC', 'TRUE').upper() != 'FALSE': + fm.source(default_conf) + if os.access(custom_conf, os.R_OK): + fm.source(custom_conf) + else: fm.source(fm.relpath('config', 'rc.conf')) |