File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -148,10 +148,10 @@ export function activate(ctx: vscode.ExtensionContext): void {
148
148
initCoverageDecorators ( ctx ) ;
149
149
150
150
ctx . subscriptions . push (
151
- vscode . commands . registerCommand ( 'go.open.modulewiki ' , async ( ) => {
151
+ vscode . commands . registerCommand ( 'go.open.modulesdoc ' , async ( ) => {
152
152
vscode . commands . executeCommand (
153
153
'vscode.open' ,
154
- vscode . Uri . parse ( 'https://github.com/microsoft /vscode-go/wiki/Go- modules-support-in-Visual-Studio-Code ' )
154
+ vscode . Uri . parse ( 'https://github.com/golang /vscode-go/blob/master/docs/ modules.md ' )
155
155
) ;
156
156
} )
157
157
) ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const statusBarItemModule = vscode.window.createStatusBarItem(vscode.StatusBarAl
18
18
statusBarItemModule . text = '$(megaphone) Go Modules' ;
19
19
statusBarItemModule . tooltip =
20
20
'Modules is enabled for this project. Click to learn more about Modules support in VS Code.' ;
21
- statusBarItemModule . command = 'go.open.modulewiki ' ;
21
+ statusBarItemModule . command = 'go.open.modulesdoc ' ;
22
22
23
23
export function showHideStatus ( editor : vscode . TextEditor ) {
24
24
if ( statusBarEntry ) {
You can’t perform that action at this time.
0 commit comments