aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider/pythonx.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-03-11 12:33:41 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-03-11 12:33:41 -0500
commit66a75fb835575b7a909102cf2345e132648935a6 (patch)
tree1f7bc7f59f46e3d5c247b3cc22018e56f520b3c8 /runtime/autoload/provider/pythonx.vim
parent26d189e9a1d50df6878e818f7ad0a981f9bd5d82 (diff)
parent3cb9970acf935c1b8627cfd244757b68989ad146 (diff)
downloadrneovim-66a75fb835575b7a909102cf2345e132648935a6.tar.gz
rneovim-66a75fb835575b7a909102cf2345e132648935a6.tar.bz2
rneovim-66a75fb835575b7a909102cf2345e132648935a6.zip
Merge pull request #4410 from alexgenco/ruby_rplugin
Ruby remote plugin support
Diffstat (limited to 'runtime/autoload/provider/pythonx.vim')
-rw-r--r--runtime/autoload/provider/pythonx.vim9
1 files changed, 2 insertions, 7 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim
index 2a8e2d1de1..05815a4896 100644
--- a/runtime/autoload/provider/pythonx.vim
+++ b/runtime/autoload/provider/pythonx.vim
@@ -27,13 +27,8 @@ function! provider#pythonx#Require(host) abort
echomsg v:throwpoint
echomsg v:exception
endtry
- throw 'Failed to load '. a:host.orig_name . ' host. '.
- \ 'You can try to see what happened '.
- \ 'by starting Neovim with the environment variable '.
- \ '$NVIM_PYTHON_LOG_FILE set to a file and opening '.
- \ 'the generated log file. Also, the host stderr will be available '.
- \ 'in Neovim log, so it may contain useful information. '.
- \ 'See also ~/.nvimlog.'
+ throw remote#host#LoadErrorForHost(a:host.orig_name,
+ \ '$NVIM_PYTHON_LOG_FILE')
endfunction
function! provider#pythonx#Detect(major_ver) abort