aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider/pythonx.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-19 15:03:02 +0200
committerGitHub <noreply@github.com>2017-04-19 15:03:02 +0200
commitf0c12012d99b33474bd6bb5dcb0ee3a6c6808789 (patch)
tree8a6efd81a3bf4528ff20b54dcef0d9d5905b3868 /runtime/autoload/provider/pythonx.vim
parent14b1becb5466003a65fa6be0517352abb7bc0f42 (diff)
parent6bc6d94ec8c8f7e291454ebc888c0fa8435908c8 (diff)
downloadrneovim-f0c12012d99b33474bd6bb5dcb0ee3a6c6808789.tar.gz
rneovim-f0c12012d99b33474bd6bb5dcb0ee3a6c6808789.tar.bz2
rneovim-f0c12012d99b33474bd6bb5dcb0ee3a6c6808789.zip
Merge #6546 from justinmk/doc
Diffstat (limited to 'runtime/autoload/provider/pythonx.vim')
-rw-r--r--runtime/autoload/provider/pythonx.vim5
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, '']