We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 412463c commit a6151f7Copy full SHA for a6151f7
server/src/server.ts
@@ -1088,6 +1088,7 @@ async function onMessage(msg: p.Message) {
1088
} else if (msg.method === DidOpenTextDocumentNotification.method) {
1089
let params = msg.params as p.DidOpenTextDocumentParams;
1090
await openedFile(params.textDocument.uri, params.textDocument.text);
1091
+ await sendUpdatedDiagnostics();
1092
await updateDiagnosticSyntax(params.textDocument.uri, params.textDocument.text);
1093
} else if (msg.method === DidChangeTextDocumentNotification.method) {
1094
let params = msg.params as p.DidChangeTextDocumentParams;
0 commit comments