From c69ea3b4b8aa8e6f3a756a49fc43a798b77f7eff Mon Sep 17 00:00:00 2001 From: Colin Yates Date: Sun, 10 Jun 2018 19:09:10 +0100 Subject: checkhealth: fix nodejs provider advice (#8522) closes #8515 --- runtime/autoload/health/provider.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index 7067ff6c1d..69f0b711fc 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -557,7 +557,7 @@ function! s:check_node() abort call health#report_warn( \ printf('Package "neovim" is out-of-date. Installed: %s, latest: %s', \ current_npm, latest_npm), - \ ['Run in shell: npm update neovim']) + \ ['Run in shell: npm install -g neovim']) else call health#report_ok('Latest "neovim" npm package is installed: '. current_npm) endif -- cgit