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