diff options
author | Colin Yates <colin@colinyates.co.uk> | 2018-06-10 19:09:10 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-06-10 20:09:10 +0200 |
commit | c69ea3b4b8aa8e6f3a756a49fc43a798b77f7eff (patch) | |
tree | e16a569159d51c8f5c9782f13b86005d8a387c3e | |
parent | dc5fdbc75827734d2edc629af8fba5fb9ee34dd3 (diff) | |
download | rneovim-c69ea3b4b8aa8e6f3a756a49fc43a798b77f7eff.tar.gz rneovim-c69ea3b4b8aa8e6f3a756a49fc43a798b77f7eff.tar.bz2 rneovim-c69ea3b4b8aa8e6f3a756a49fc43a798b77f7eff.zip |
checkhealth: fix nodejs provider advice (#8522)
closes #8515
-rw-r--r-- | runtime/autoload/health/provider.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 |