mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
feat(lsp): enable workspace/didChangeWatchedFiles by default (#23190)
This commit is contained in:
parent
2d2ed4f6fd
commit
e9b85acfbb
@ -52,6 +52,9 @@ The following changes to existing APIs or features add new behavior.
|
|||||||
• vim.diagnostic.config() now accepts a function for the virtual_text.prefix
|
• vim.diagnostic.config() now accepts a function for the virtual_text.prefix
|
||||||
option, which allows for rendering e.g., diagnostic severities differently.
|
option, which allows for rendering e.g., diagnostic severities differently.
|
||||||
|
|
||||||
|
• The `workspace/didChangeWatchedFiles` LSP client capability is now enabled
|
||||||
|
by default.
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
REMOVED FEATURES *news-removed*
|
REMOVED FEATURES *news-removed*
|
||||||
|
|
||||||
|
@ -837,7 +837,7 @@ function protocol.make_client_capabilities()
|
|||||||
refreshSupport = true,
|
refreshSupport = true,
|
||||||
},
|
},
|
||||||
didChangeWatchedFiles = {
|
didChangeWatchedFiles = {
|
||||||
dynamicRegistration = false,
|
dynamicRegistration = true,
|
||||||
relativePatternSupport = true,
|
relativePatternSupport = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user