mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 20:43:31 +01:00
For known external scheme, the customized normalizeLink method use vscode.Uri to parse and create the string representation of the link before caling the original normalizeLink method. The toString method of vscode.Uri encodes the result by default, and this is unecessary since encoding is handled by the original normalizeLink method. Calls toString method with skipEncoding option. Resolves: #60525