mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
lsp: Disable capabilities not currently supported by language client handlers (#13638)
Several language servers are incorrectly invoking handlers which are not yet implemented in core.
This commit is contained in:
parent
329547bf70
commit
28b7574c94
@ -730,7 +730,15 @@ function protocol.make_client_capabilities()
|
||||
experimental = nil;
|
||||
window = {
|
||||
workDoneProgress = true;
|
||||
}
|
||||
showMessage = {
|
||||
messageActionItem = {
|
||||
additionalPropertiesSupport = false;
|
||||
};
|
||||
};
|
||||
showDocument = {
|
||||
support = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user