neovim

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

commit aa62898ae329ec7ef978b4e7263c6f41b28f2503
parent 7311958e1238559db7a0b1f490f15f618f51af06
Author: notomo <notomo.motono@gmail.com>
Date:   Thu, 29 Feb 2024 01:36:28 +0900

fix(lsp): correct the error message's cmd on spawning (#27632)


Diffstat:
Mruntime/lua/vim/lsp/rpc.lua | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/runtime/lua/vim/lsp/rpc.lua b/runtime/lua/vim/lsp/rpc.lua @@ -819,7 +819,8 @@ function M.start(cmd, dispatchers, extra_spawn_params) else sfx = string.format(' with error message: %s', err) end - local msg = string.format('Spawning language server with cmd: `%s` failed%s', cmd, sfx) + local msg = + string.format('Spawning language server with cmd: `%s` failed%s', vim.inspect(cmd), sfx) vim.notify(msg, vim.log.levels.WARN) return nil end