mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
feat(lsp): announce codeLens resolveSupport (#29956)
The codelens implementation can resolve command via `codeLens/resolve`. The spec added client capabilities for that: https://github.com/microsoft/language-server-protocol/pull/1979
This commit is contained in:
parent
4f3801c925
commit
6072153796
@ -427,6 +427,12 @@ function protocol.make_client_capabilities()
|
||||
properties = { 'edit' },
|
||||
},
|
||||
},
|
||||
codeLens = {
|
||||
dynamicRegistration = false,
|
||||
resolveSupport = {
|
||||
properties = { 'command' },
|
||||
},
|
||||
},
|
||||
formatting = {
|
||||
dynamicRegistration = true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user