(filePath: string)
| 61 | } |
| 62 | |
| 63 | function formatPathLink(filePath: string): string { |
| 64 | if (!supportsHyperlinks()) { |
| 65 | return filePath |
| 66 | } |
| 67 | const fileUrl = pathToFileURL(filePath).href |
| 68 | return `\x1b]8;;${fileUrl}\x07${filePath}\x1b]8;;\x07` |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Generate and cache the completion script, then add a source line to the |
no test coverage detected