From 44e3cc2d5fbfe4e20502107410228e23abf09b5d Mon Sep 17 00:00:00 2001 From: Jacob Wallraff Date: Thu, 2 Mar 2023 18:16:32 -0800 Subject: [PATCH] Cleanup --- languageserver/src/connection.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/languageserver/src/connection.ts b/languageserver/src/connection.ts index 01f1036..c527fe5 100644 --- a/languageserver/src/connection.ts +++ b/languageserver/src/connection.ts @@ -132,11 +132,6 @@ export function initConnection(connection: Connection) { await connection.sendDiagnostics({uri: textDocument.uri, diagnostics: result}); } - // connection.onDidChangeWatchedFiles(async change => { - // // Monitored files have change in VSCode - // connection.console.log('We received an file change event'); - // }); - connection.onCompletion(async ({position, textDocument}: TextDocumentPositionParams): Promise => { return timeOperation( "completion",