Const
Contribute actions to the session card action bar shown on hover in the welcome screen. Bind to ChatSessionCardActionContribution to add entries.
ChatSessionCardActionContribution
bind(ChatSessionCardActionContribution).toDynamicValue(() => ({ getActions: (_session: ChatSessionMetadata) => [{ commandId: 'my.command', iconClass: codicon('star'), tooltip: 'My action', }]})); Copy
bind(ChatSessionCardActionContribution).toDynamicValue(() => ({ getActions: (_session: ChatSessionMetadata) => [{ commandId: 'my.command', iconClass: codicon('star'), tooltip: 'My action', }]}));
Contribute actions to the session card action bar shown on hover in the welcome screen. Bind to
ChatSessionCardActionContributionto add entries.Example