-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: desktop-only extensions are forced to disable in code-server #5609
Comments
Sadly, I don't think there is much we can do to support
Have you tried raising an issue with the extension author? |
jeano413 (the author) mentioned a SPECIAL API in an code-server-related issue raised before:
I post a new reply in the issue for more information just now. |
Awesome! I'll comment on there. |
Hi, old conversation I know but what you can try (not good practice but if you need an extension):
then just remove the whole part. I'm using the newest version and I couldn't install a specific wasm-extension but after removing this part, it was installed flawlessly and I was able to use it. |
Nice hacks, I want to use antfu.browse-lite in github codespace, and I can debug and run this extension in codespace, so this extension should work in codespace. But when I installed the extension, it just shown Remove For this extension, you have to install and configure chrome.
Then this extension works like a charm. |
From the docs on https://code.visualstudio.com/api/advanced-topics/remote-extensions#common-problems, I found a more elegant and clean method. Just add the following configurations to json settings. The Using this method, the extension could auto update without modification. "remote.extensionKind": {
"antfu.browse-lite": [
"ui",
"workspace",
]
} |
Closing since there is nothing we can do on our end. The |
Hi,
When I try to enable
Remote - SSH
, the code-server saysThis extension is disabled because it is defined to run only in code-server for the Desktop.
I understand that may guys have discuessed it before in #1315. But it is strange that Open Remote - SSH, an open-source alternative for
Remote - SSH
, is also forced to disable in code-server.This limitation is known to exists in vscode.dev as their doc describes:
But I think code-server is somewhat different from vscode.dev since it is not running completely within the browser ?
The text was updated successfully, but these errors were encountered: