summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py
index 74b12d0c..b6992cc5 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1993,6 +1993,9 @@ class Core(object):
# Remove all gaptabs if switching from gaps to nogaps
if option == 'create_gaps' and value.lower() == 'false':
self.tabs = list(filter(lambda x: bool(x), self.tabs))
+ elif option == 'plugins_dir':
+ path = os.path.expanduser(value)
+ self.plugin_manager.on_plugins_dir_change(path)
self.information(msg, 'Info')
def completion_set(self, the_input):