We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb07203 commit 6fa07dbCopy full SHA for 6fa07db
src/PowerShellEditorServices/Workspace/Workspace.cs
@@ -709,8 +709,9 @@ public static string ConvertPathToDocumentUri(string path)
709
}
710
else
711
{
712
- // On non-Windows system, simply append the escaped path.
713
- docUriStrBld.Append(escapedPath);
+ // On non-Windows systems, append the escapedPath and undo the over-aggressive
+ // escaping of / done by Uri.EscapeDataString.
714
+ docUriStrBld.Append(escapedPath).Replace("%2F", "/");
715
716
717
#if !CoreCLR
0 commit comments