File tree 2 files changed +0
-11
lines changed
2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change 86
86
"title" : " Expand Alias" ,
87
87
"category" : " PowerShell"
88
88
},
89
- {
90
- "command" : " PowerShell.OnlineHelp" ,
91
- "title" : " Get Online Help for Command (Deprecated)" ,
92
- "category" : " PowerShell"
93
- },
94
89
{
95
90
"command" : " PowerShell.ShowHelp" ,
96
91
"title" : " Get Help for Command" ,
Original file line number Diff line number Diff line change @@ -29,12 +29,6 @@ export class ShowHelpFeature implements IFeature {
29
29
30
30
this . languageClient . sendRequest ( ShowHelpRequestType , text ) ;
31
31
} ) ;
32
-
33
- this . deprecatedCommand = vscode . commands . registerCommand ( "PowerShell.OnlineHelp" , ( ) => {
34
- const warnText = "PowerShell.OnlineHelp is being deprecated. Use PowerShell.ShowHelp instead." ;
35
- vscode . window . showWarningMessage ( warnText ) ;
36
- vscode . commands . executeCommand ( "PowerShell.ShowHelp" ) ;
37
- } ) ;
38
32
}
39
33
40
34
public dispose ( ) {
You can’t perform that action at this time.
0 commit comments