Skip to content

Commit 2e615e8

Browse files
snewell92chuckjaz
authored andcommitted
Add revealOutputChannelOn to language client (#195)
1 parent fb9e84f commit 2e615e8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/src/extension.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as path from 'path';
22

33
import { workspace, Disposable, ExtensionContext } from 'vscode';
4-
import { LanguageClient, LanguageClientOptions, SettingMonitor, ServerOptions, TransportKind } from 'vscode-languageclient';
4+
import { LanguageClient, LanguageClientOptions, SettingMonitor, ServerOptions, TransportKind, RevealOutputChannelOn } from 'vscode-languageclient';
55

66
export function activate(context: ExtensionContext) {
77
// The server is implemented in node
@@ -28,6 +28,9 @@ export function activate(context: ExtensionContext) {
2828
workspace.createFileSystemWatcher('**/*.ts')
2929
]
3030
},
31+
32+
// Don't let our output console pop open
33+
revealOutputChannelOn: RevealOutputChannelOn.Never
3134
}
3235

3336
// Create the language client and start the client.

0 commit comments

Comments
 (0)