Wrap text in an OSC 8 terminal hyperlink if color is enabled.
(url, text)
| 611 | |
| 612 | |
| 613 | def hyperlink(url, text): |
| 614 | """Wrap text in an OSC 8 terminal hyperlink if color is enabled.""" |
| 615 | if not _COLOR: |
| 616 | return text |
| 617 | return f"\033]8;;{url}\033\\{text}\033]8;;\033\\" |
| 618 | |
| 619 | |
| 620 | def file_url(path): |
no outgoing calls
no test coverage detected