Skip to content

Commit f9e4cef

Browse files
committed
Auto merge of rust-lang#17637 - jjoeldaniel:master, r=Veykril
internal: remove rust-analyzer.openFAQ Removed no longer functional `rust-analyzer.openFAQ` command created in rust-lang#17508
2 parents 39ff560 + 5c767db commit f9e4cef

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

src/tools/rust-analyzer/editors/code/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3216,9 +3216,6 @@
32163216
},
32173217
{
32183218
"command": "rust-analyzer.openWalkthrough"
3219-
},
3220-
{
3221-
"command": "rust-analyzer.openFAQ"
32223219
}
32233220
],
32243221
"editor/context": [

src/tools/rust-analyzer/editors/code/src/commands.ts

Lines changed: 0 additions & 10 deletions
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-
}

src/tools/rust-analyzer/editors/code/src/main.ts

Lines changed: 0 additions & 1 deletion
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)