fix: add a toggle to disable the dependency explorer.

This commit is contained in:
David Barsky 2023-05-26 11:50:07 -04:00
parent eee6872647
commit 7dfef85be6
3 changed files with 14 additions and 2 deletions

View file

@ -263,7 +263,10 @@ export class Ctx {
}
await client.start();
this.updateCommands();
this.prepareTreeDependenciesView(client);
if (this.config.showDependenciesExplorer) {
this.prepareTreeDependenciesView(client);
}
}
private prepareTreeDependenciesView(client: lc.LanguageClient) {