diff options
| author | ZyX <kp-pav@yandex.ru> | 2017-04-21 00:33:12 +0300 |
|---|---|---|
| committer | ZyX <kp-pav@yandex.ru> | 2017-04-21 00:33:12 +0300 |
| commit | d463c9e03a79e981faaaa985b1160c292d08e172 (patch) | |
| tree | 8ebfb9bc003f76a6be2d84035c52c6fdd24afbb5 /runtime/autoload/provider/pythonx.vim | |
| parent | c289986c89dd0189ed8ab709bf2eb822c493542a (diff) | |
| parent | 19646a2985e54dfc561a90a70054522afc052a45 (diff) | |
| download | rneovim-d463c9e03a79e981faaaa985b1160c292d08e172.tar.gz rneovim-d463c9e03a79e981faaaa985b1160c292d08e172.tar.bz2 rneovim-d463c9e03a79e981faaaa985b1160c292d08e172.zip | |
Merge branch 'master' into lazier-arg_errmsg-gettext
Diffstat (limited to 'runtime/autoload/provider/pythonx.vim')
| -rw-r--r-- | runtime/autoload/provider/pythonx.vim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim index 08a0f39b01..2f64c22c71 100644 --- a/runtime/autoload/provider/pythonx.vim +++ b/runtime/autoload/provider/pythonx.vim @@ -112,15 +112,14 @@ function! s:check_interpreter(prog, major_ver) abort endif if v:shell_error == 2 - return [0, prog_path . ' does not have the neovim module installed. ' - \ . 'See ":help provider-python".'] + return [0, prog_path.' does not have the "neovim" module. :help provider-python'] elseif v:shell_error == 127 " This can happen with pyenv's shims. return [0, prog_path . ' does not exist: ' . prog_ver] elseif v:shell_error return [0, 'Checking ' . prog_path . ' caused an unknown error. ' \ . '(' . v:shell_error . ', output: ' . prog_ver . ')' - \ . ' Please report this at github.com/neovim/neovim.'] + \ . ' Report this at https://github.com/neovim/neovim'] endif return [1, ''] |