feat(lsp): add codeAction/resolve support (#15818)

Closes https://github.com/neovim/neovim/issues/15339 and https://github.com/neovim/neovim/issues/15828
This commit is contained in:
Mathias Fußenegger
2021-09-28 23:04:01 +02:00
committed by GitHub
parent 3507d58dfb
commit ec4731d982
5 changed files with 157 additions and 72 deletions

View File

@@ -645,6 +645,10 @@ function protocol.make_client_capabilities()
end)();
};
};
dataSupport = true;
resolveSupport = {
properties = { 'edit', }
};
};
completion = {
dynamicRegistration = false;