lsp-java
lsp-java copied to clipboard
The extended client capability: resolveAdditionalTextEditsSupport will be deprecated
Since LSP 3.16, client can set resolveSupport to indicates which properties a client can resolve lazily on a completion item. JDT.LS will check resolveSupport to get which properties are supported in the completionItem/resolve request.
And that means there is no need to set resolveAdditionalTextEditsSupport in extendedClientCapabilities. resolveAdditionalTextEditsSupport will be deprecated.
More information, please check:
- https://github.com/eclipse/eclipse.jdt.ls/pull/2598
- https://github.com/redhat-developer/vscode-java/pull/3070
Thanks for the heads up.