Skip to content

Commit 346210b

Browse files
committed
remove rust-analyzer.openFAQ
1 parent e6e8bd2 commit 346210b

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

Diff for: src/tools/rust-analyzer/editors/code/package.json

-8
Original file line numberDiff line numberDiff line change
@@ -310,11 +310,6 @@
310310
"command": "rust-analyzer.openWalkthrough",
311311
"title": "Open Walkthrough",
312312
"category": "rust-analyzer"
313-
},
314-
{
315-
"command": "rust-analyzer.openFAQ",
316-
"title": "Open FAQ",
317-
"category": "rust-analyzer"
318313
}
319314
],
320315
"keybindings": [
@@ -3221,9 +3216,6 @@
32213216
},
32223217
{
32233218
"command": "rust-analyzer.openWalkthrough"
3224-
},
3225-
{
3226-
"command": "rust-analyzer.openFAQ"
32273219
}
32283220
],
32293221
"editor/context": [

Diff for: src/tools/rust-analyzer/editors/code/src/commands.ts

-10
Original file line numberDiff line numberDiff line change
@@ -1518,13 +1518,3 @@ export function openWalkthrough(_: Ctx): Cmd {
15181518
);
15191519
};
15201520
}
1521-
1522-
export function openFAQ(_: Ctx): Cmd {
1523-
return async () => {
1524-
await vscode.commands.executeCommand(
1525-
"workbench.action.openWalkthrough",
1526-
"rust-lang.rust-analyzer#faq",
1527-
true,
1528-
);
1529-
};
1530-
}

Diff for: src/tools/rust-analyzer/editors/code/src/main.ts

-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ function createCommands(): Record<string, CommandFactory> {
179179
toggleCheckOnSave: { enabled: commands.toggleCheckOnSave },
180180
toggleLSPLogs: { enabled: commands.toggleLSPLogs },
181181
openWalkthrough: { enabled: commands.openWalkthrough },
182-
openFAQ: { enabled: commands.openFAQ },
183182
// Internal commands which are invoked by the server.
184183
applyActionGroup: { enabled: commands.applyActionGroup },
185184
applySnippetWorkspaceEdit: { enabled: commands.applySnippetWorkspaceEditCommand },

0 commit comments

Comments
 (0)