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 688c149 commit 9f441f9Copy full SHA for 9f441f9
vscode-dotty/src/extension.ts
@@ -106,7 +106,7 @@ export function activate(context: ExtensionContext) {
106
* Adding a first folder to the workspace completely reloads the extension.
107
*/
108
function setWorkspaceAndReload(document: vscode.TextDocument) {
109
- const documentPath = path.parse(document.uri.path).dir
+ const documentPath = path.parse(document.uri.fsPath).dir
110
const workspaceRoot = findWorkspaceRoot(documentPath) || documentPath
111
vscode.workspace.updateWorkspaceFolders(0, null, { uri: vscode.Uri.file(workspaceRoot) })
112
}
0 commit comments