diff --git a/editors/vscode/src/extension.ts b/editors/vscode/src/extension.ts index e6d584524..7e51a10b0 100644 --- a/editors/vscode/src/extension.ts +++ b/editors/vscode/src/extension.ts @@ -141,6 +141,9 @@ function startClient( // Add setup common between native and wasm LSP to common.setup_client_handle! client.add_updater((cl) => { + // Just make sure that the output channel is always present. + cl?.outputChannel.append(""); + cl?.onNotification(common.serverStatus, (params: any) => common.setServerStatus(params, statusBar), );