Skip to content

Commit

Permalink
Merge pull request #174 from jarstelfox/output-stop-popping-up
Browse files Browse the repository at this point in the history
Prevent focusing the output tab
  • Loading branch information
muglug committed Jul 3, 2022
2 parents 89891b6 + 5d10d7f commit 6e2d26f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/LanguageServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
LanguageClient,
StreamInfo,
ErrorHandler,
RevealOutputChannelOn,
} from 'vscode-languageclient/node';
import { StatusBar, LanguageServerStatus } from './StatusBar';
import { spawn, ChildProcess } from 'child_process';
Expand Down Expand Up @@ -56,6 +57,7 @@ export class LanguageServer {
{
outputChannel: this.loggingService,
traceOutputChannel: this.loggingService,
revealOutputChannelOn: RevealOutputChannelOn.Never,
// Register the server for php (and maybe HTML) documents
documentSelector: this.configurationService.get<
string[] | DocumentSelector
Expand Down

0 comments on commit 6e2d26f

Please sign in to comment.