Skip to content

Commit

Permalink
Merge pull request #75 from matthillman/issue-stop-output-auto-open
Browse files Browse the repository at this point in the history
Don't auto open the output console
  • Loading branch information
octref authored Nov 13, 2019
2 parents 3555d5e + 9a53489 commit bdf3062
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 bdf3062

Please sign in to comment.