minor: use 'jedi-vim' in no_jedi_warning; fix typo 'too old'

This commit is contained in:
Daniel Hahler
2015-05-01 23:07:54 +02:00
parent dd4cb80911
commit baa2969427

View File

@@ -15,7 +15,7 @@ except ImportError:
def no_jedi_warning():
vim.command('echohl WarningMsg | echom "Please install Jedi if you want to use jedi_vim." | echohl None')
vim.command('echohl WarningMsg | echom "Please install Jedi if you want to use jedi-vim." | echohl None')
def echo_highlight(msg):
@@ -35,7 +35,7 @@ else:
from jedi import utils
version = utils.version_info()
if version < (0, 7):
echo_highlight('Please update your Jedi version, it is to old.')
echo_highlight('Please update your Jedi version, it is too old.')
is_py3 = sys.version_info[0] >= 3
if is_py3: