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 4ff04df commit ecc01a5Copy full SHA for ecc01a5
extensions/positron-r/src/lsp.ts
@@ -15,6 +15,7 @@ import {
15
LanguageClientOptions,
16
State,
17
StreamInfo,
18
+ RevealOutputChannelOn
19
} from 'vscode-languageclient/node';
20
21
import { Socket } from 'net';
@@ -118,7 +119,8 @@ export class ArkLsp implements vscode.Disposable {
118
119
fileEvents: vscode.workspace.createFileSystemWatcher('**/*.R')
120
},
121
errorHandler: new RErrorHandler(this._version, port),
- outputChannel: outputChannel
122
+ outputChannel: outputChannel,
123
+ revealOutputChannelOn: RevealOutputChannelOn.Never
124
};
125
126
// With a `.` rather than a `-` so vscode-languageserver can look up related options correctly
0 commit comments