Open
Description
Notice how the command is offscreen:

Steps to Reproduce:
- open
chatStatus.ts
- change
getEntryProps
to return this:
return {
name: localize('chatStatus', "Copilot Status"),
text,
ariaLabel,
command,
showInAllWindows: true,
kind: 'copilot',
tooltip: {
content: () => {
const container = $('div.chat-status-bar-entry-tooltip');
if (this.contextKeyService.getContextKeyValue<boolean>(ChatContextKeys.Setup.pro.key) === true) {
container.appendChild($('div', undefined, localize('proTitle', "You are using Copilot Pro")));
container.appendChild($('hr'));
}
// Settings
this.createSettings(container, disposables);
// Shortcuts
container.appendChild($('hr'));
this.createShortcuts(container, disposables);
return container;
},
commands: [{
id: TOGGLE_CHAT_ACTION_ID,
title: 'Toggle'
}]
}
};