Skip to content

Commit

Permalink
Move jedi and parso to a single vendored dir
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Sep 25, 2017
1 parent d723e0e commit 41bae35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
@@ -1,6 +1,6 @@
[submodule "rplugin/python3/deoplete/jedi"]
path = rplugin/python3/deoplete/jedi
path = rplugin/python3/deoplete/vendored/jedi
url = https://github.com/davidhalter/jedi.git
[submodule "rplugin/python3/deoplete/parso"]
path = rplugin/python3/deoplete/parso
path = rplugin/python3/deoplete/vendored/parso
url = https://github.com/davidhalter/parso.git
3 changes: 2 additions & 1 deletion rplugin/python3/deoplete/sources/deoplete_jedi/server.py
Expand Up @@ -37,7 +37,8 @@
except ImportError:
import pickle

libpath = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
libpath = os.path.join(
os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'vendored')
jedi_path = os.path.join(libpath, 'jedi')
parso_path = os.path.join(libpath, 'parso')

Expand Down

0 comments on commit 41bae35

Please sign in to comment.