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
The extension tries to download and install the platform package for the OS. This fails with the error:
Installing platform package from https://github.com/vadimcn/codelldb/releases/download/v1.11.4/codelldb-win32-x64.vsix
Error: Error: Command with id 'workbench.extensions.command.installFromVSIX' is not registered.
In the extensions view there is the option Install from VSIX... in the More Actions menu. If I download the platform VSIX manually and install it via that option, it seems to work.
I suppose the install from VSIX action is not registered with the 'workbench.extensions.command.installFromVSIX' command id.
.
As we can see in this file, the 'workbench.extensions.installExtension' command has been mapped, but not the command used by the CodeLLDB extension.
The addition of the command 'workbench.extensions.command.installFromVSIX' shall probably made here. In Theia, the vsx installation commands are defined in the file
. At first glance, it seems the command from VS code expect a parameter, which would probably map to the VSXExtensionsCommands.INSTALL_VSIX_FILE command parameter.
Bug Description:
I installed a current Theia IDE. Then I installed the CodeLLDB extension from Open VSX: https://open-vsx.org/extension/vadimcn/vscode-lldb
The extension tries to download and install the platform package for the OS. This fails with the error:
In the extensions view there is the option Install from VSIX... in the More Actions menu. If I download the platform VSIX manually and install it via that option, it seems to work.
I suppose the install from VSIX action is not registered with the 'workbench.extensions.command.installFromVSIX' command id.
Steps to Reproduce:
Additional Information
The code of the CodeLLDB extension that performs the operation is here: https://github.com/vadimcn/codelldb/blob/e5aef55fd68b54f9f33c7c293e0321d7f6396be8/extension/install.ts#L67C77-L67C92
The text was updated successfully, but these errors were encountered: