aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider/python.vim
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-03-15 13:31:36 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2016-03-15 13:31:36 +0100
commitc94575fded78be1c9fca8b7d193c9bbb30a1dc95 (patch)
treea3b49ecee652cacbff8750ba4a8f3b9c8968453f /runtime/autoload/provider/python.vim
parente7a9c006e15d99b4a276822d5f0f50b8cc2f6fb5 (diff)
parent89bb5a8ab87c0afb3ff992063457422fc24adf95 (diff)
downloadrneovim-c94575fded78be1c9fca8b7d193c9bbb30a1dc95.tar.gz
rneovim-c94575fded78be1c9fca8b7d193c9bbb30a1dc95.tar.bz2
rneovim-c94575fded78be1c9fca8b7d193c9bbb30a1dc95.zip
Merge pull request #4418 from bfredl/remove_script_host
python: remove script_host.py that now is in neovim/python-client
Diffstat (limited to 'runtime/autoload/provider/python.vim')
-rw-r--r--runtime/autoload/provider/python.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/autoload/provider/python.vim b/runtime/autoload/provider/python.vim
index b769895357..cb9d5c5296 100644
--- a/runtime/autoload/provider/python.vim
+++ b/runtime/autoload/provider/python.vim
@@ -24,12 +24,10 @@ if s:prog == ''
finish
endif
-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 remote#host#RegisterClone('legacy-python-provider', 'python')
-call remote#host#RegisterPlugin('legacy-python-provider', s:plugin_path, [])
+call remote#host#RegisterPlugin('legacy-python-provider', 'script_host.py', [])
function! provider#python#Call(method, args)
if s:err != ''