about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDavid Richey <davidrichey@fb.com>2024-08-16 09:47:46 -0500
committerDavid Richey <davidrichey@fb.com>2024-08-16 09:50:45 -0500
commit6fc487d2ccb57b7166bb706707485bd5b129fe9d (patch)
tree8ed2a3d1e000a58ceeb18af4c2a6a789921cef6e /src
parent995a014192029b187b2094284d729b4df6711bfb (diff)
downloadrust-6fc487d2ccb57b7166bb706707485bd5b129fe9d.tar.gz
rust-6fc487d2ccb57b7166bb706707485bd5b129fe9d.zip
Remove rust-analyzer.workspace.discoverProjectRunner
Diffstat (limited to 'src')
-rw-r--r--src/tools/rust-analyzer/editors/code/package.json8
-rw-r--r--src/tools/rust-analyzer/editors/code/src/config.ts4
2 files changed, 0 insertions, 12 deletions
diff --git a/src/tools/rust-analyzer/editors/code/package.json b/src/tools/rust-analyzer/editors/code/package.json
index bf9c4a366d4..3d1e1efe4db 100644
--- a/src/tools/rust-analyzer/editors/code/package.json
+++ b/src/tools/rust-analyzer/editors/code/package.json
@@ -330,14 +330,6 @@
                         "default": false,
                         "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": {
                         "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,
diff --git a/src/tools/rust-analyzer/editors/code/src/config.ts b/src/tools/rust-analyzer/editors/code/src/config.ts
index dc0165df71e..1e3dc608095 100644
--- a/src/tools/rust-analyzer/editors/code/src/config.ts
+++ b/src/tools/rust-analyzer/editors/code/src/config.ts
@@ -252,10 +252,6 @@ export class Config {
         await this.cfg.update("checkOnSave", !(value || false), target || null, overrideInLanguage);
     }
 
-    get discoverProjectRunner(): string | undefined {
-        return this.get<string | undefined>("discoverProjectRunner");
-    }
-
     get problemMatcher(): string[] {
         return this.get<string[]>("runnables.problemMatcher") || [];
     }