(text: string, url: string)
| 182 | const BEL = '\u0007' |
| 183 | |
| 184 | function wrapWithOsc8Link(text: string, url: string): string { |
| 185 | return `${OSC}8;;${url}${BEL}${text}${OSC}8;;${BEL}` |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Build a mapping from each character position in the plain text to its segment index. |
no outgoing calls
no test coverage detected