From ccb98ae0709d68887322d85581092483b5b69d33 Mon Sep 17 00:00:00 2001 From: Joaquin Colacci Date: Fri, 8 Dec 2023 15:24:05 -0500 Subject: [PATCH] fix: disable completion (#170) --- src/clients/lsp.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/clients/lsp.ts b/src/clients/lsp.ts index 95838a4..5250ee4 100644 --- a/src/clients/lsp.ts +++ b/src/clients/lsp.ts @@ -274,7 +274,7 @@ export default class LspClient { documentSelector: [{ scheme: "file", language: "mzsql"}], initializationOptions: { formattingWidth, - schema: this.schema, + // schema: this.schema, } }; @@ -364,7 +364,7 @@ export default class LspClient { command: "optionsUpdate", arguments: [{ formattingWidth: this.getFormattingWidth(), - schema: this.schema, + // schema: this.schema, }]}) as ExecuteCommandParseResponse; } }