diff options
author | Alex Genco <alexgenco@gmail.com> | 2016-03-10 18:56:47 -0800 |
---|---|---|
committer | Alex Genco <alexgenco@gmail.com> | 2016-03-10 19:01:44 -0800 |
commit | 3cb9970acf935c1b8627cfd244757b68989ad146 (patch) | |
tree | b082163cf8ea4d43702114592323c46cef709057 /runtime/autoload/provider/pythonx.vim | |
parent | bb020df0f52c3eec6cb84ce1a786fa3a90904815 (diff) | |
download | rneovim-3cb9970acf935c1b8627cfd244757b68989ad146.tar.gz rneovim-3cb9970acf935c1b8627cfd244757b68989ad146.tar.bz2 rneovim-3cb9970acf935c1b8627cfd244757b68989ad146.zip |
Ruby remote plugin support
Diffstat (limited to 'runtime/autoload/provider/pythonx.vim')
-rw-r--r-- | runtime/autoload/provider/pythonx.vim | 9 |
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 |