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
Implementing this functionality the same way as in VS Code encounters a bunch of problems:
We cannot tell which plugins are present in the system until the plugins deployment has run as a side-effect of system startup. So doing the "this plugin is already installed" message is not possible before deployment is running
Determining the set of plugins in the system and uninstalling is done via "HostedPluginSupport", which is a service that runs in the plugin host and which is not available in the back end, only the front-end. Implementing a cli command in the front-end is not possible, because in the browser case, there may not be a front-end for a long time.
What we can do is install the given version (or the latest version if none is given) unconditionally. I have sketched a change proposal that would allow to handle plugin management more robustly here
tsmaeder
added a commit
to tsmaeder/theia
that referenced
this issue
Feb 26, 2024
Inspired by the VS Code --install-extension command. Users can give the
option multiple times with either a plugin id of the form
"publisher.name[@Version]" or with a file path designating a *.vsix
file.
contributed on behalf of STMicroelectronics
Signed-off-by: Thomas Mäder <[email protected]>
Fixes#13406
Inspired by the VS Code --install-extension command. Users can give the
option multiple times with either a plugin id of the form
"publisher.name[@Version]" or with a file path designating a *.vsix
file.
contributed on behalf of STMicroelectronics
Signed-off-by: Thomas Mäder <[email protected]>
Feature Description:
VS Code has a command to install plugins from the command line like so:
We should add a command to the Theia command line to do the same.
The text was updated successfully, but these errors were encountered: