You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content: newMarkdownString(`${localize('setupContent',"{0} is your AI pair programmer that helps you write code faster and smarter.",defaultChat.name)}\n\n[${localize('signInAndSetup',"Sign in to use {0}",defaultChat.name)}](command:${ChatSetupSignInAndInstallChatAction.ID})\n\n[${localize('learnMore',"Learn More")}](${defaultChat.documentationUrl}) | [${localize('hideSetup',"Hide")}](command:${disableChatSetupActionId})`,{isTrusted: true}),
125
+
content: newMarkdownString(`${localize('setupContent',"{0} is your AI pair programmer that helps you write code faster and smarter.",defaultChat.name)}\n\n[${localize('signInAndSetup',"Sign in to use {0}",defaultChat.name)}](command:${ChatSetupSignInAndInstallChatAction.ID})\n\n[${localize('learnMore',"Learn More")}](${defaultChat.documentationUrl}) | [${localize('hideSetup',"Hide")}](command:${ChatSetupHideAction.ID} "${localize('hideSetup',"Hide")}")`,{isTrusted: true}),
content: newMarkdownString(`${localize('setupContent',"{0} is your AI pair programmer that helps you write code faster and smarter.",defaultChat.name)}\n\n[${localize('setup',"Install {0}",defaultChat.name)}](command:${ChatSetupInstallAction.ID})\n\n[${localize('learnMore',"Learn More")}](${defaultChat.documentationUrl}) | [${localize('hideSetup',"Hide")}](command:${disableChatSetupActionId})`,{isTrusted: true}),
140
+
content: newMarkdownString(`${localize('setupContent',"{0} is your AI pair programmer that helps you write code faster and smarter.",defaultChat.name)}\n\n[${localize('setup',"Install {0}",defaultChat.name)}](command:${ChatSetupInstallAction.ID})\n\n[${localize('learnMore',"Learn More")}](${defaultChat.documentationUrl}) | [${localize('hideSetup',"Hide")}](command:${ChatSetupHideAction.ID} "${localize('hideSetup',"Hide")}")`,{isTrusted: true}),
179
141
});
180
142
181
143
// Setup: Signing-in
@@ -188,7 +150,7 @@ class ChatSetupContribution extends Disposable implements IWorkbenchContribution
188
150
)!,
189
151
icon: defaultChat.icon,
190
152
progress: localize('setupChatSigningIn',"Signing in to {0}...",defaultChat.providerName),
content: newMarkdownString(`${localize('setupContent',"{0} is your AI pair programmer that helps you write code faster and smarter.",defaultChat.name)}`,{isTrusted: true}),
192
154
});
193
155
194
156
// Setup: Installing
@@ -197,22 +159,22 @@ class ChatSetupContribution extends Disposable implements IWorkbenchContribution
197
159
when: ChatContextKeys.ChatSetup.installing,
198
160
icon: defaultChat.icon,
199
161
progress: localize('setupChatInstalling',"Setting up Chat for you..."),
content: newMarkdownString(`${localize('setupContent',"{0} is your AI pair programmer that helps you write code faster and smarter.",defaultChat.name)}`,{isTrusted: true}),
this.storageService.remove('chat.welcomeMessageContent.panel',StorageScope.APPLICATION);// fixes flicker issues with cached welcome from previous install
signedIn: newRawContextKey<boolean>('chatSetupSignedIn',false,{type: 'boolean',description: localize('chatSetupSignedIn',"True when chat setup is offered for a signed-in user.")}),
46
46
entitled: newRawContextKey<boolean>('chatSetupEntitled',false,{type: 'boolean',description: localize('chatSetupEntitled',"True when chat setup is offered for a signed-in, entitled user.")}),
47
47
48
-
triggering: newRawContextKey<boolean>('chatSetupTriggered',false,{type: 'boolean',description: localize('chatSetupTriggered',"True when chat setup is triggered.")}),
48
+
triggered: newRawContextKey<boolean>('chatSetupTriggered',false,{type: 'boolean',description: localize('chatSetupTriggered',"True when chat setup is triggered.")}),
49
49
installing: newRawContextKey<boolean>('chatSetupInstalling',false,{type: 'boolean',description: localize('chatSetupInstalling',"True when chat setup is installing chat.")}),
50
50
signingIn: newRawContextKey<boolean>('chatSetupSigningIn',false,{type: 'boolean',description: localize('chatSetupSigningIn',"True when chat setup is waiting for signing in.")})
0 commit comments