Skip to content

Commit 999b514

Browse files
authored
fix: use the proper path separator (#38)
1 parent eacfd15 commit 999b514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class Commands {
171171
if (opened.length > 1) {
172172
const items: vscode.QuickPickItem[] = opened.map((folder): vscode.QuickPickItem => {
173173
return {
174-
label: folder.folderUri.fsPath,
174+
label: folder.folderUri.path,
175175
}
176176
})
177177
const item = await vscode.window.showQuickPick(items, {

0 commit comments

Comments
 (0)