Skip to content

Commit

Permalink
Handle all schemes by default (#1657)
Browse files Browse the repository at this point in the history
  • Loading branch information
ydaveluy authored Aug 30, 2024
1 parent 5063a2b commit 99fb880
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function startLanguageClient(context: vscode.ExtensionContext): LanguageClient {

// Options to control the language client
const clientOptions: LanguageClientOptions = {
documentSelector: [{ scheme: 'file', language: '<%= language-id %>' }]
documentSelector: [{ scheme: '*', language: '<%= language-id %>' }]
};

// Create the language client and start the client.
Expand Down

0 comments on commit 99fb880

Please sign in to comment.