removed star import of jedi_vim

This commit is contained in:
David Halter
2012-10-13 01:32:30 +02:00
parent 6c21cb1520
commit 8a04fde301
2 changed files with 15 additions and 17 deletions

View File

@@ -67,17 +67,15 @@ python << PYTHONEOF
""" here we initialize the jedi stuff """
import vim
# update the system path, to include the python scripts
# update the system path, to include the jedi path
import sys
import os
from os.path import dirname, abspath, join
sys.path.insert(0, join(dirname(dirname(abspath(vim.eval('s:current_file')))), 'jedi'))
import jedi
import jedi.keywords
# update the sys path to include the jedi_vim script
sys.path.append(dirname(abspath(vim.eval('s:current_file'))))
from jedi_vim import *
import jedi_vim
sys.path.pop()
PYTHONEOF