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 {
148148 initCoverageDecorators ( ctx ) ;
149149
150150 ctx . subscriptions . push (
151- vscode . commands . registerCommand ( 'go.open.modulewiki ' , async ( ) => {
151+ vscode . commands . registerCommand ( 'go.open.modulesdoc ' , async ( ) => {
152152 vscode . commands . executeCommand (
153153 '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 ' )
155155 ) ;
156156 } )
157157 ) ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const statusBarItemModule = vscode.window.createStatusBarItem(vscode.StatusBarAl
1818statusBarItemModule . text = '$(megaphone) Go Modules' ;
1919statusBarItemModule . tooltip =
2020 '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 ' ;
2222
2323export function showHideStatus ( editor : vscode . TextEditor ) {
2424 if ( statusBarEntry ) {
You can’t perform that action at this time.
0 commit comments