diff options
author | E Kawashima <e-kwsm@users.noreply.github.com> | 2017-03-05 04:25:09 +0900 |
---|---|---|
committer | E Kawashima <e-kwsm@users.noreply.github.com> | 2017-03-05 21:32:26 +0900 |
commit | 50f0a9f9f725b79bf325a84abadbfc314dcbfb1d (patch) | |
tree | 62f03330701fb39c3639fd6e54f4d2532bed55ee /rplugin/python3 | |
parent | 5a4eeb487f48cd287fd7e90db2ded4cc3d505723 (diff) | |
download | deoplete.nvim-50f0a9f9f725b79bf325a84abadbfc314dcbfb1d.zip |
Support subdirectories for source and filter
Diffstat (limited to 'rplugin/python3')
-rw-r--r-- | rplugin/python3/deoplete/util.py | 1 |
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: |