Fix incorrect capabilities notification in LSP

This commit is contained in:
Oliver Frank 2020-05-15 16:43:48 -04:00
parent dac8b7b6f4
commit 2173d041af
1 changed files with 3 additions and 3 deletions

View File

@ -486,7 +486,7 @@ struct TextDocumentSyncOptions {
* If present save notifications are sent to the server. If omitted the notification should not be * If present save notifications are sent to the server. If omitted the notification should not be
* sent. * sent.
*/ */
SaveOptions save; bool save = false;
Dictionary to_json() { Dictionary to_json() {
Dictionary dict; Dictionary dict;
@ -494,7 +494,7 @@ struct TextDocumentSyncOptions {
dict["willSave"] = willSave; dict["willSave"] = willSave;
dict["openClose"] = openClose; dict["openClose"] = openClose;
dict["change"] = change; dict["change"] = change;
dict["save"] = save.to_json(); dict["save"] = save;
return dict; return dict;
} }
}; };
@ -1642,7 +1642,7 @@ struct ServerCapabilities {
_FORCE_INLINE_ Dictionary to_json() { _FORCE_INLINE_ Dictionary to_json() {
Dictionary dict; Dictionary dict;
dict["textDocumentSync"] = (int)textDocumentSync.change; dict["textDocumentSync"] = textDocumentSync.to_json();
dict["completionProvider"] = completionProvider.to_json(); dict["completionProvider"] = completionProvider.to_json();
signatureHelpProvider.triggerCharacters.push_back(","); signatureHelpProvider.triggerCharacters.push_back(",");
signatureHelpProvider.triggerCharacters.push_back("("); signatureHelpProvider.triggerCharacters.push_back("(");