Skip to content
This repository was archived by the owner on Nov 28, 2019. It is now read-only.

Commit f8c4931

Browse files
committed
Never reveal outputChannel
1 parent c00808a commit f8c4931

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import * as path from 'path';
33
import { spawn } from 'child_process';
44
import * as vscode from 'vscode';
5-
import { LanguageClient, LanguageClientOptions, ServerOptions } from 'vscode-languageclient';
5+
import { LanguageClient, LanguageClientOptions, ServerOptions, RevealOutputChannelOn } from 'vscode-languageclient';
66
import * as url from 'url';
77

88
export async function activate(context: vscode.ExtensionContext): Promise<void> {
@@ -19,6 +19,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
1919

2020
// Options to control the language client
2121
const clientOptions: LanguageClientOptions = {
22+
revealOutputChannelOn: RevealOutputChannelOn.Never,
2223
// Register the server for php documents
2324
documentSelector: ['typescript', 'javascript', 'typescriptreact', 'javascriptreact'],
2425
uriConverters: {

0 commit comments

Comments
 (0)