neovim

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

commit d8d39344e38d27acccbab268bef19034ef7cd579
parent 51d082b466c59f739205a6ec0abeeee1281df68b
Author: Raphael <glephunter@gmail.com>
Date:   Fri, 20 Jan 2023 14:59:31 +0800

fix(lsp): fix `removed` param value in add_workspace_folder (#21915)


Diffstat:
Mruntime/lua/vim/lsp/buf.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua @@ -487,7 +487,7 @@ function M.add_workspace_folder(workspace_folder) end local params = util.make_workspace_params( { { uri = vim.uri_from_fname(workspace_folder), name = workspace_folder } }, - { {} } + {} ) for _, client in pairs(vim.lsp.get_active_clients({ bufnr = 0 })) do local found = false