Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/windows-fix' into monaco
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Jan 13, 2025
2 parents f789769 + c12ea25 commit ff0b6df
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vscode-lean4/src/utils/exturi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export class FileUri {
fsPath: string

constructor(fsPath: string) {
// TODO: Is this robust on Windows???
fsPath = fsPath.replaceAll('\\', '/')
this.scheme = 'file'
this.fsPath = fsPath
}
Expand Down

0 comments on commit ff0b6df

Please sign in to comment.