mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00: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:

committed by
GitHub

parent
4f3801c925
commit
6072153796
@@ -427,6 +427,12 @@ function protocol.make_client_capabilities()
|
|||||||
properties = { 'edit' },
|
properties = { 'edit' },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
codeLens = {
|
||||||
|
dynamicRegistration = false,
|
||||||
|
resolveSupport = {
|
||||||
|
properties = { 'command' },
|
||||||
|
},
|
||||||
|
},
|
||||||
formatting = {
|
formatting = {
|
||||||
dynamicRegistration = true,
|
dynamicRegistration = true,
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user