-
Notifications
You must be signed in to change notification settings - Fork 37.4k
Open
Labels
apiapi-finalizationapi-proposalextension-hostExtension host issuesExtension host issuesfeature-requestRequest for new features or functionalityRequest for new features or functionality
Description
vscode.extensions.all or vscode.extensions.getExtension will only return extensions from the current extension host. The root cause for this is that the return type IExtension<T> exposes the .exports property, which represents the extension's exported API. Since extensions can export synchronous APIs, we can't automatically proxy it to make it available to other extension hosts.
Also, making vscode.extensions.getExtension return an extension running on a different extension host, has the potential to cause breakage in existing extensions.
We could add a new function to be able to get to extensions that are running on other extension hosts.
This came up before e.g. in #82633
cc @jrieken
colombod, a-stewart, yCodeTech, mbomb007 and plbstl
Metadata
Metadata
Labels
apiapi-finalizationapi-proposalextension-hostExtension host issuesExtension host issuesfeature-requestRequest for new features or functionalityRequest for new features or functionality