diff options
author | Florian Walch <florian@fwalch.com> | 2015-06-09 13:31:02 +0300 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2015-06-09 13:31:02 +0300 |
commit | 6270d431aaeed71e7a8782411f36409ab8e0ee35 (patch) | |
tree | 3aa7f3d7c27a5311901b492e1238bcd90c69abdc /runtime/autoload/remote | |
parent | 232c40b40a56eb30c7a6732368eb631e1e58fc7c (diff) | |
parent | e8c68aa7ee64aaa8363b2900ea97a97e7eb8ba4b (diff) | |
download | rneovim-6270d431aaeed71e7a8782411f36409ab8e0ee35.tar.gz rneovim-6270d431aaeed71e7a8782411f36409ab8e0ee35.tar.bz2 rneovim-6270d431aaeed71e7a8782411f36409ab8e0ee35.zip |
Merge #2735 'provider: Only call system() once, don't use Python 3 interpreter for +python, improve messages'.
Diffstat (limited to 'runtime/autoload/remote')
-rw-r--r-- | runtime/autoload/remote/host.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index 2a7cd3c43b..a8b505d096 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -214,10 +214,12 @@ function! s:RequirePythonHost(name) catch echomsg v:exception endtry - throw 'Failed to load python host. You can try to see what happened ' . - \ 'by starting Neovim with $NVIM_PYTHON_PYTHON_LOG and opening '. + throw 'Failed to load Python 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.' + \ 'in Neovim log, so it may contain useful information. '. + \ 'See also ~/.nvimlog.' endfunction call remote#host#Register('python', function('s:RequirePythonHost')) |