files - allow more file operations to run in the extension host (#172345) (#185988)

* files - allow more file operations to run in the extension host (#172345)

* fix tests

* tests

* tests

* tests
This commit is contained in:
Benjamin Pasero
2023-06-23 17:18:44 +02:00
committed by GitHub
parent 6b5330586a
commit 052ac9ca4c
4 changed files with 123 additions and 17 deletions

View File

@@ -1020,7 +1020,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
registerFileSystemProvider(scheme, provider, options) {
return combinedDisposable(
extHostFileSystem.registerFileSystemProvider(extension, scheme, provider, options),
extHostConsumerFileSystem.addFileSystemProvider(scheme, provider)
extHostConsumerFileSystem.addFileSystemProvider(scheme, provider, options)
);
},
get fs() {