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 fb0347e commit 37cec1dCopy full SHA for 37cec1d
vscode-dotty/src/extension.ts
@@ -7,7 +7,8 @@ import * as cpp from 'child-process-promise';
7
8
import { ExtensionContext } from 'vscode';
9
import * as vscode from 'vscode';
10
-import { LanguageClient, LanguageClientOptions, ServerOptions } from 'vscode-languageclient';
+import { LanguageClient, LanguageClientOptions, RevealOutputChannelOn,
11
+ ServerOptions } from 'vscode-languageclient';
12
13
let extensionContext: ExtensionContext
14
let outputChannel: vscode.OutputChannel
@@ -156,7 +157,8 @@ function run(serverOptions: ServerOptions) {
156
157
],
158
synchronize: {
159
configurationSection: 'dotty'
- }
160
+ },
161
+ revealOutputChannelOn: RevealOutputChannelOn.Never
162
}
163
164
outputChannel.dispose()
0 commit comments