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 89aacec commit 1ab4be4Copy full SHA for 1ab4be4
src/extension.ts
@@ -25,6 +25,7 @@ import {
25
ServerOptions,
26
TransportKind,
27
State as LanguageClientState,
28
+ RevealOutputChannelOn,
29
} from 'vscode-languageclient/node'
30
import { DEFAULT_LANGUAGES } from './lib/languages'
31
import isObject from './util/isObject'
@@ -173,6 +174,7 @@ export function activate(context: ExtensionContext) {
173
174
diagnosticCollectionName: CLIENT_ID,
175
workspaceFolder: folder,
176
outputChannel: outputChannel,
177
+ revealOutputChannelOn: RevealOutputChannelOn.Never,
178
middleware: {
179
async resolveCompletionItem(item, token, next) {
180
let result = await next(item, token)
0 commit comments