diff options
-rw-r--r-- | runtime/lua/provider/health.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/provider/health.lua b/runtime/lua/provider/health.lua index f2c19f53fb..d33f74f6e9 100644 --- a/runtime/lua/provider/health.lua +++ b/runtime/lua/provider/health.lua @@ -806,11 +806,11 @@ local function node() .. current_npm .. ' latest: ' .. latest_npm - warn(message({ + warn(message, { 'Run in shell: npm install -g neovim', 'Run in shell (if you use yarn): yarn global add neovim', 'Run in shell (if you use pnpm): pnpm install -g neovim', - })) + }) else ok('Latest "neovim" npm/yarn/pnpm package is installed: ' .. current_npm) end |