(uri: vs.Uri)
| 322 | } |
| 323 | |
| 324 | function uriToString(uri: vs.Uri) { |
| 325 | return uri.toString() |
| 326 | .replace(/%24/g, "$") |
| 327 | .replace(/%5B/g, "["); |
| 328 | } |
| 329 | |
| 330 | export function treeLabel(item: vs.TreeItem): string | undefined { |
| 331 | if (!item.label || typeof item.label === "string") |