This commit is contained in:
Lukas Wirth 2022-07-23 00:14:34 +02:00
parent 84a6fac37a
commit f1b5e38563
4 changed files with 30 additions and 3983 deletions

View file

@ -42,7 +42,8 @@ export class Ctx {
const res = new Ctx(config, extCtx, client, serverPath, statusBar);
await client.start();
res.pushCleanup(client.start());
await client.onReady();
client.onNotification(ra.serverStatus, (params) => res.setServerStatus(params));
return res;
}