File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -449,6 +449,11 @@ Default:
449
449
"tags" : "",
450
450
}
451
451
```
452
+ ### ` go.showWelcome `
453
+
454
+ Specifies whether to show the Welcome experience on first install
455
+
456
+ Default: ` true `
452
457
### ` go.survey.prompt `
453
458
454
459
Prompt for surveys, including the gopls survey and the Go developer survey.
Original file line number Diff line number Diff line change 1113
1113
"type" : " object" ,
1114
1114
"title" : " Go" ,
1115
1115
"properties" : {
1116
+ "go.showWelcome" : {
1117
+ "type" : " boolean" ,
1118
+ "default" : true ,
1119
+ "description" : " Specifies whether to show the Welcome experience on first install"
1120
+ },
1116
1121
"go.buildOnSave" : {
1117
1122
"type" : " string" ,
1118
1123
"enum" : [
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export class WelcomePanel {
31
31
}
32
32
33
33
// Show the Go welcome page on update.
34
- if ( ! extensionInfo . isInCloudIDE ) {
34
+ if ( ! extensionInfo . isInCloudIDE && vscode . workspace . getConfiguration ( 'go.showWelcome' ) ) {
35
35
showGoWelcomePage ( ) ;
36
36
}
37
37
}
You can’t perform that action at this time.
0 commit comments