diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2016-08-20 12:58:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-20 12:58:37 +0200 |
| commit | 71b3e20d0fba20d4957c1949352bde1744a0a947 (patch) | |
| tree | 7844b2d185b27a0303183e90792a5ef807933e88 /runtime/autoload/remote/host.vim | |
| parent | 1b825a9ada4d89059645bc7a458e1e8d931c6161 (diff) | |
| parent | 2d60a15e25f487eda1ac00a9e6cdf9a6564fb416 (diff) | |
| download | rneovim-71b3e20d0fba20d4957c1949352bde1744a0a947.tar.gz rneovim-71b3e20d0fba20d4957c1949352bde1744a0a947.tar.bz2 rneovim-71b3e20d0fba20d4957c1949352bde1744a0a947.zip | |
Merge pull request #4723 from bfredl/rpcstderr
allow stderr handler for rpc jobs and use it to display python/ruby startup error
Diffstat (limited to 'runtime/autoload/remote/host.vim')
| -rw-r--r-- | runtime/autoload/remote/host.vim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index 5948de2b3d..065644121a 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -261,9 +261,8 @@ function! remote#host#LoadErrorForHost(host, log) abort \ 'You can try to see what happened '. \ 'by starting Neovim with the environment variable '. \ a:log . ' 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.' + \ 'log file. Also, the host stderr is available '. + \ 'in messages.' endfunction |