We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e54a33 commit 7780fc2Copy full SHA for 7780fc2
src/codewhisperer/service/inlineCompletionService.ts
@@ -144,7 +144,10 @@ export class InlineCompletionService {
144
145
setCodeWhispererStatusBarLoading() {
146
this._isPaginationRunning = true
147
- this.statusBar.text = codicon` ${getIcon('vscode-loading~spin')} CodeWhisperer`
+ const selectedCustomization = getSelectedCustomization()
148
+ this.statusBar.text = codicon` ${getIcon('vscode-loading~spin')} CodeWhisperer${
149
+ selectedCustomization.arn === '' ? '' : ` | ${selectedCustomization.name}`
150
+ }`
151
this.statusBar.command = undefined
152
;(this.statusBar as any).backgroundColor = undefined
153
this.statusBar.show()
0 commit comments