From ec4731d982031e363a59efd4566fc72234bb43c8 Mon Sep 17 00:00:00 2001 From: Mathias Fußenegger Date: Tue, 28 Sep 2021 23:04:01 +0200 Subject: feat(lsp): add codeAction/resolve support (#15818) Closes https://github.com/neovim/neovim/issues/15339 and https://github.com/neovim/neovim/issues/15828 --- runtime/lua/vim/lsp/protocol.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'runtime/lua/vim/lsp/protocol.lua') diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua index 27703b4503..b3aa8b934f 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -645,6 +645,10 @@ function protocol.make_client_capabilities() end)(); }; }; + dataSupport = true; + resolveSupport = { + properties = { 'edit', } + }; }; completion = { dynamicRegistration = false; -- cgit