From bdf6ddd172370900e0aa3e5c3efbdb5a5ea71d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mangeonjean?= Date: Tue, 21 Dec 2021 16:49:41 +0100 Subject: [PATCH] Enable progress feature by default --- client/src/monaco-language-client.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/monaco-language-client.ts b/client/src/monaco-language-client.ts index 9eff4e1b..a25e5ee2 100644 --- a/client/src/monaco-language-client.ts +++ b/client/src/monaco-language-client.ts @@ -13,6 +13,7 @@ import { ColorProviderFeature } from "vscode-languageclient/lib/common/colorProv import { WorkspaceFoldersFeature } from "vscode-languageclient/lib/common/workspaceFolders"; import { FoldingRangeFeature } from "vscode-languageclient/lib/common/foldingRange"; import { CallHierarchyFeature } from "vscode-languageclient/lib/common/callHierarchy"; +import { ProgressFeature } from "vscode-languageclient/lib/common/progress"; import { SemanticTokensFeature } from "vscode-languageclient/lib/common/semanticTokens"; import * as p2c from 'vscode-languageclient/lib/common/protocolConverter'; import * as c2p from 'vscode-languageclient/lib/common/codeConverter'; @@ -98,6 +99,7 @@ export class MonacoLanguageClient extends BaseLanguageClient { this.registerFeature(new DeclarationFeature(this)); this.registerFeature(new SemanticTokensFeature(this)); this.registerFeature(new CallHierarchyFeature(this)); + this.registerFeature(new ProgressFeature(this)); const features = this['_features'] as ((StaticFeature | DynamicFeature)[]); for (const feature of features) {