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:
Michael Lingelbach 2020-12-30 14:54:02 -08:00 committed by GitHub
parent 329547bf70
commit 28b7574c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -730,7 +730,15 @@ function protocol.make_client_capabilities()
experimental = nil;
window = {
workDoneProgress = true;
}
showMessage = {
messageActionItem = {
additionalPropertiesSupport = false;
};
};
showDocument = {
support = false;
};
};
}
end