We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa820d4 commit d10a282Copy full SHA for d10a282
package.json
@@ -1110,6 +1110,11 @@
1110
"type": "object",
1111
"title": "Go",
1112
"properties": {
1113
+ "go.showWelcome": {
1114
+ "type": "boolean",
1115
+ "default": true,
1116
+ "description": "Specifies whether to show the Welcome experience on first install"
1117
+ },
1118
"go.buildOnSave": {
1119
"type": "string",
1120
"enum": [
src/welcome.ts
@@ -31,7 +31,7 @@ export class WelcomePanel {
31
}
32
33
// Show the Go welcome page on update.
34
- if (!extensionInfo.isInCloudIDE) {
+ if (!extensionInfo.isInCloudIDE && vscode.workspace.getConfiguration('go.showWelcome')) {
35
showGoWelcomePage();
36
37
0 commit comments