aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2015-05-02 21:00:33 +0200
committerFlorian Walch <florian@fwalch.com>2015-06-09 10:29:45 +0300
commit6fa10ab9cb77fb96f414b3fe6b19b25552e4f6a2 (patch)
tree6412fbf1a3231c8d1574e92a6a4c29d951491908 /runtime/autoload/provider
parent905f34cf30fdebdf430c3be72429193fd855cc7f (diff)
downloadrneovim-6fa10ab9cb77fb96f414b3fe6b19b25552e4f6a2.tar.gz
rneovim-6fa10ab9cb77fb96f414b3fe6b19b25552e4f6a2.tar.bz2
rneovim-6fa10ab9cb77fb96f414b3fe6b19b25552e4f6a2.zip
provider/pythonx: add reference to ":help nvim-python" for error
Diffstat (limited to 'runtime/autoload/provider')
-rw-r--r--runtime/autoload/provider/pythonx.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim
index e390692d4d..5daa68fa5c 100644
--- a/runtime/autoload/provider/pythonx.vim
+++ b/runtime/autoload/provider/pythonx.vim
@@ -64,7 +64,7 @@ function! s:check_interpreter(prog, ver, skip) abort
\ '''import importlib; exit(importlib.find_loader("neovim") is None)''')
\ )
if v:shell_error
- return [0, 'Python'.a:ver.' interpreter ('.a:prog.') has no neovim module installed.', ver]
+ return [0, 'Python'.a:ver.' interpreter ('.a:prog.') has no neovim module installed. See ":help nvim-python".', ver]
endif
return [1, '', ver]
endfunction