neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit ba88fd886ae871025719dfc8602072cc51ce5407
parent a827003e3052c6d9ee7bdb71518182e9bd76317d
Author: Itamar Lencovsky <4740959+eitamal@users.noreply.github.com>
Date:   Sun, 26 Nov 2023 07:03:32 +1000

fix(health): malformed call to warn() #26217


Diffstat:
Mruntime/lua/provider/health.lua | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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