aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-06-15 01:53:00 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-06-15 22:50:37 -0400
commit37f560aedf36043d479775ccc20447801b615126 (patch)
tree97fc987e13e28e5b6e08e6a45741a7f06f0eabab /runtime/autoload
parent7718f8f24c9e795103b639367a90992dd161bd01 (diff)
downloadrneovim-37f560aedf36043d479775ccc20447801b615126.tar.gz
rneovim-37f560aedf36043d479775ccc20447801b615126.tar.bz2
rneovim-37f560aedf36043d479775ccc20447801b615126.zip
doc/python: cleanup
- Move info to providers.txt - Remove "nvim-" prefix. - Brevity, clarity, ...
Diffstat (limited to 'runtime/autoload')
-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 c3256e8308..0ebf00112f 100644
--- a/runtime/autoload/provider/pythonx.vim
+++ b/runtime/autoload/provider/pythonx.vim
@@ -106,7 +106,7 @@ function! s:check_interpreter(prog, major_ver, skip) abort
if v:shell_error == 2
return [0, prog_path . ' does not have the neovim module installed. '
- \ . 'See ":help nvim-python".']
+ \ . 'See ":help provider-python".']
elseif v:shell_error == 127
" This can happen with pyenv's shims.
return [0, prog_path . ' does not exist: ' . prog_ver]