diff --git a/package.json b/package.json index e4347a4040..b931fb47c8 100644 --- a/package.json +++ b/package.json @@ -86,11 +86,6 @@ "title": "Expand Alias", "category": "PowerShell" }, - { - "command": "PowerShell.OnlineHelp", - "title": "Get Online Help for Command (Deprecated)", - "category": "PowerShell" - }, { "command": "PowerShell.ShowHelp", "title": "Get Help for Command", diff --git a/src/features/ShowHelp.ts b/src/features/ShowHelp.ts index 0c877740bc..516a33b909 100644 --- a/src/features/ShowHelp.ts +++ b/src/features/ShowHelp.ts @@ -29,12 +29,6 @@ export class ShowHelpFeature implements IFeature { this.languageClient.sendRequest(ShowHelpRequestType, text); }); - - this.deprecatedCommand = vscode.commands.registerCommand("PowerShell.OnlineHelp", () => { - const warnText = "PowerShell.OnlineHelp is being deprecated. Use PowerShell.ShowHelp instead."; - vscode.window.showWarningMessage(warnText); - vscode.commands.executeCommand("PowerShell.ShowHelp"); - }); } public dispose() {