Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--editors/code/package.json3
-rw-r--r--editors/code/src/commands.ts10
-rw-r--r--editors/code/src/main.ts1
3 files changed, 0 insertions, 14 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index b103bc53a5..b1e6e4837a 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -3216,9 +3216,6 @@
},
{
"command": "rust-analyzer.openWalkthrough"
- },
- {
- "command": "rust-analyzer.openFAQ"
}
],
"editor/context": [
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts
index 72ca2923dd..621b969578 100644
--- a/editors/code/src/commands.ts
+++ b/editors/code/src/commands.ts
@@ -1518,13 +1518,3 @@ export function openWalkthrough(_: Ctx): Cmd {
);
};
}
-
-export function openFAQ(_: Ctx): Cmd {
- return async () => {
- await vscode.commands.executeCommand(
- "workbench.action.openWalkthrough",
- "rust-lang.rust-analyzer#faq",
- true,
- );
- };
-}
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index a23f3656e3..db1c377b46 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -179,7 +179,6 @@ function createCommands(): Record<string, CommandFactory> {
toggleCheckOnSave: { enabled: commands.toggleCheckOnSave },
toggleLSPLogs: { enabled: commands.toggleLSPLogs },
openWalkthrough: { enabled: commands.openWalkthrough },
- openFAQ: { enabled: commands.openFAQ },
// Internal commands which are invoked by the server.
applyActionGroup: { enabled: commands.applyActionGroup },
applySnippetWorkspaceEdit: { enabled: commands.applySnippetWorkspaceEditCommand },