()
| 1595 | } |
| 1596 | |
| 1597 | function getOutputStyleAttachment(): Attachment[] { |
| 1598 | const settings = getSettings_DEPRECATED() |
| 1599 | const outputStyle = settings?.outputStyle || 'default' |
| 1600 | |
| 1601 | // Only show for non-default styles |
| 1602 | if (outputStyle === 'default') { |
| 1603 | return [] |
| 1604 | } |
| 1605 | |
| 1606 | return [ |
| 1607 | { |
| 1608 | type: 'output_style', |
| 1609 | style: outputStyle, |
| 1610 | }, |
| 1611 | ] |
| 1612 | } |
| 1613 | |
| 1614 | async function getSelectedLinesFromIDE( |
| 1615 | ideSelection: IDESelection | null, |