Skip to content

Commit

Permalink
Don't auto open the output console
Browse files Browse the repository at this point in the history
  • Loading branch information
matthillmanbt committed Sep 17, 2018
1 parent 3c2e9a4 commit 9a53489
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import {
LanguageClient,
LanguageClientOptions,
ServerOptions,
TransportKind
TransportKind,
RevealOutputChannelOn
} from 'vscode-languageclient';

export function activate(context: vscode.ExtensionContext) {
Expand Down Expand Up @@ -40,7 +41,11 @@ export function activate(context: vscode.ExtensionContext) {
initializationOptions: {
settings: vscode.workspace.getConfiguration('scss'),
activeEditorUri: activeEditor ? activeEditor.document.uri.toString() : null
}
},

// Don't open the output console
// automatically because of us
revealOutputChannelOn: RevealOutputChannelOn.Never,
};

const client = new LanguageClient('scss-intellisense', 'SCSS IntelliSense', serverOptions, clientOptions);
Expand Down

0 comments on commit 9a53489

Please sign in to comment.