We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666e105 commit a604a56Copy full SHA for a604a56
src/features/ShowHelp.ts
@@ -36,12 +36,6 @@ export class ShowHelpFeature implements IFeature {
36
this.languageClient.sendRequest(ShowHelpRequestType, item.Name);
37
}
38
});
39
-
40
- this.deprecatedCommand = vscode.commands.registerCommand("PowerShell.OnlineHelp", () => {
41
- const warnText = "PowerShell.OnlineHelp is being deprecated. Use PowerShell.ShowHelp instead.";
42
- vscode.window.showWarningMessage(warnText);
43
- vscode.commands.executeCommand("PowerShell.ShowHelp");
44
- });
45
46
47
public dispose() {
0 commit comments