summaryrefslogtreecommitdiff
path: root/rplugin/python3
diff options
context:
space:
mode:
authorE Kawashima <e-kwsm@users.noreply.github.com>2017-03-05 04:25:09 +0900
committerE Kawashima <e-kwsm@users.noreply.github.com>2017-03-05 21:32:26 +0900
commit50f0a9f9f725b79bf325a84abadbfc314dcbfb1d (patch)
tree62f03330701fb39c3639fd6e54f4d2532bed55ee /rplugin/python3
parent5a4eeb487f48cd287fd7e90db2ded4cc3d505723 (diff)
downloaddeoplete.nvim-50f0a9f9f725b79bf325a84abadbfc314dcbfb1d.zip
Support subdirectories for source and filter
Diffstat (limited to 'rplugin/python3')
-rw-r--r--rplugin/python3/deoplete/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rplugin/python3/deoplete/util.py b/rplugin/python3/deoplete/util.py
index b93bbc3..8f51410 100644
--- a/rplugin/python3/deoplete/util.py
+++ b/rplugin/python3/deoplete/util.py
@@ -71,6 +71,7 @@ def find_rplugins(context, source):
os.path.join('rplugin/python3/deoplete', source, 'base.py'),
os.path.join('rplugin/python3/deoplete', source, '*.py'),
os.path.join('rplugin/python3/deoplete', source + 's', '*.py'),
+ os.path.join('rplugin/python3/deoplete', source, '*', '*.py'),
)
for src in sources: