Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/commands.ts')
-rw-r--r--editors/code/src/commands.ts10
1 files changed, 0 insertions, 10 deletions
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,
- );
- };
-}