diff options
author | Alex Genco <alexgenco@gmail.com> | 2017-12-17 08:47:52 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-12-17 18:04:47 +0100 |
commit | 2851bb9effafda599e21e3b639e99c636ce70ba6 (patch) | |
tree | 9d09ee29562e60505a4090386212c81df77b52dc | |
parent | f3d7eeff7736b10e43b52016fe9de5daa000a585 (diff) | |
download | rneovim-2851bb9effafda599e21e3b639e99c636ce70ba6.tar.gz rneovim-2851bb9effafda599e21e3b639e99c636ce70ba6.tar.bz2 rneovim-2851bb9effafda599e21e3b639e99c636ce70ba6.zip |
health.vim: mention g:ruby_host_prog #7737
-rw-r--r-- | runtime/autoload/health/provider.vim | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index fbd8d50f1b..39e592c471 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -455,10 +455,11 @@ function! s:check_ruby() abort let host = provider#ruby#Detect() if empty(host) - call health#report_warn('Missing "neovim" gem.', - \ ['Run in shell: gem install neovim', - \ 'Is the gem bin directory in $PATH? Check `gem environment`.', - \ 'If you are using rvm/rbenv/chruby, try "rehashing".']) + call health#report_warn("`neovim-ruby-host` not found.", + \ ['Run `gem install neovim` to ensure the neovim RubyGem is installed.', + \ 'Run `gem environment` to ensure the gem bin directory is in $PATH.', + \ 'If you are using rvm/rbenv/chruby, try "rehashing".', + \ 'See :help g:ruby_host_prog for non-standard gem installations.']) return endif call health#report_info('Host: '. host) |