You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/providers/FileSystemProvider/FileSystemProvider.ts
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -369,7 +369,9 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
369
369
throwvscode.FileSystemError.FileNotFound(uri);
370
370
}
371
371
// 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
373
375
constfullName=entry.name==="" ? part : entry.fullName+"/"+part;
0 commit comments