mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
Remove rust-analyzer.workspace.discoverProjectRunner
This commit is contained in:
parent
7f77e09fbe
commit
ac6a3f82cd
2 changed files with 0 additions and 12 deletions
|
@ -330,14 +330,6 @@
|
||||||
"default": false,
|
"default": false,
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"rust-analyzer.discoverProjectRunner": {
|
|
||||||
"markdownDescription": "Sets the extension responsible for determining which extension the rust-analyzer extension uses to generate `rust-project.json` files. This should should only be used\n if a build system like Buck or Bazel is also in use.",
|
|
||||||
"default": null,
|
|
||||||
"type": [
|
|
||||||
"null",
|
|
||||||
"string"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"rust-analyzer.showUnlinkedFileNotification": {
|
"rust-analyzer.showUnlinkedFileNotification": {
|
||||||
"markdownDescription": "Whether to show a notification for unlinked files asking the user to add the corresponding Cargo.toml to the linked projects setting.",
|
"markdownDescription": "Whether to show a notification for unlinked files asking the user to add the corresponding Cargo.toml to the linked projects setting.",
|
||||||
"default": true,
|
"default": true,
|
||||||
|
|
|
@ -252,10 +252,6 @@ export class Config {
|
||||||
await this.cfg.update("checkOnSave", !(value || false), target || null, overrideInLanguage);
|
await this.cfg.update("checkOnSave", !(value || false), target || null, overrideInLanguage);
|
||||||
}
|
}
|
||||||
|
|
||||||
get discoverProjectRunner(): string | undefined {
|
|
||||||
return this.get<string | undefined>("discoverProjectRunner");
|
|
||||||
}
|
|
||||||
|
|
||||||
get problemMatcher(): string[] {
|
get problemMatcher(): string[] {
|
||||||
return this.get<string[]>("runnables.problemMatcher") || [];
|
return this.get<string[]>("runnables.problemMatcher") || [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue