We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df48ce1 commit 852ca63Copy full SHA for 852ca63
vscode-dotty/src/extension.ts
@@ -88,7 +88,10 @@ function fetchAndRun(artifact: string) {
88
89
function run(serverOptions: ServerOptions) {
90
const clientOptions: LanguageClientOptions = {
91
- documentSelector: ['scala'],
+ documentSelector: [
92
+ { language: 'scala', scheme: 'file' },
93
+ { language: 'scala', scheme: 'untitled' }
94
+ ],
95
synchronize: {
96
configurationSection: 'dotty'
97
}
0 commit comments