Skip to content

Commit 11ba2d0

Browse files
committed
Comment on another case that needed to be handled
1 parent 9d721c5 commit 11ba2d0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/providers/FileSystemProvider/FileSystemProvider.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,9 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
369369
throw vscode.FileSystemError.FileNotFound(uri);
370370
}
371371
// Caller granted us permission to create structures for intermediate directories not yet seen.
372-
// This arises when ObjectScript Explorer uses isfs to enable server-side editing. See https://github.com/intersystems-community/vscode-objectscript/issues/879
372+
// This arises when ObjectScript Explorer uses isfs to enable server-side editing, and when reloading a workspace
373+
// in which isfs documents were previously open.
374+
// See https://github.com/intersystems-community/vscode-objectscript/issues/879
373375
const fullName = entry.name === "" ? part : entry.fullName + "/" + part;
374376
child = new Directory(part, fullName);
375377
entry.entries.set(part, child);

0 commit comments

Comments
 (0)