Skip to content

Commit 89f609d

Browse files
authored
Prevent config warnings from stealing user focus (#6310)
1 parent 9dfb2c6 commit 89f609d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function showWarning(params: ShowWarningParams): void {
135135
workspaceDisposables.push(warningChannel);
136136
}
137137
warningChannel.appendLine(`[${new Date().toLocaleString()}] ${message}`);
138-
warningChannel.show(false);
138+
warningChannel.show(true);
139139
}
140140

141141
function publishDiagnostics(params: PublishDiagnosticsParams): void {

0 commit comments

Comments
 (0)