Skip to content

Commit

Permalink
Enable progress feature by default
Browse files Browse the repository at this point in the history
  • Loading branch information
CGNonofr committed Dec 21, 2021
1 parent 9010b3b commit 0a92c1d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/src/monaco-language-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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<any>)[]);
for (const feature of features) {
Expand Down

0 comments on commit 0a92c1d

Please sign in to comment.