mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 05:15:04 +00:00
fix: add a toggle to disable the dependency explorer.
This commit is contained in:
parent
eee6872647
commit
7dfef85be6
3 changed files with 14 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue