aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider/python.vim
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-11-21 10:07:59 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-11-21 10:11:42 -0300
commit6b17082d3cf1f2e6c9eddb4f5ec0154f0f7286b0 (patch)
treeaaed92ccdfd4dbef8255e42267a1cc90218e601b /runtime/autoload/provider/python.vim
parent9a774e726c362083691476a42ab6eac0b536397a (diff)
downloadrneovim-6b17082d3cf1f2e6c9eddb4f5ec0154f0f7286b0.tar.gz
rneovim-6b17082d3cf1f2e6c9eddb4f5ec0154f0f7286b0.tar.bz2
rneovim-6b17082d3cf1f2e6c9eddb4f5ec0154f0f7286b0.zip
runtime: Refer to plugins running outside Nvim as "remote plugins"
- Rename autoload/rpc to autoload/remote - External plugins are now remote plugins - External plugins directory is "rplugin"
Diffstat (limited to 'runtime/autoload/provider/python.vim')
-rw-r--r--runtime/autoload/provider/python.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/autoload/provider/python.vim b/runtime/autoload/provider/python.vim
index 9ca81c35f4..53b984dfe2 100644
--- a/runtime/autoload/provider/python.vim
+++ b/runtime/autoload/provider/python.vim
@@ -11,11 +11,11 @@ let s:loaded_python_provider = 1
let s:plugin_path = expand('<sfile>:p:h').'/script_host.py'
" The python provider plugin will run in a separate instance of the python
" host.
-call rpc#host#RegisterClone('legacy-python-provider', 'python')
-call rpc#host#RegisterPlugin('legacy-python-provider', s:plugin_path, [])
+call remote#host#RegisterClone('legacy-python-provider', 'python')
+call remote#host#RegisterPlugin('legacy-python-provider', s:plugin_path, [])
" Ensure that we can load the python host before bootstrapping
try
- let s:host = rpc#host#Require('legacy-python-provider')
+ let s:host = remote#host#Require('legacy-python-provider')
catch
echomsg v:exception
finish