be5invis / vscode-custom-css

Custom CSS Plugin for Visual Studio Code. Based on vscode-icon
MIT License
869 stars 65 forks source link

Set extensionKind to "ui" for remoting support #132

Closed rageandqq closed 3 years ago

rageandqq commented 3 years ago

Sets the extensionKind to ui to allow the extension to be used in remote development environments. This forces the extension to run as a UI extension (on the local machine) rather than a workspace extension (on the remote machine).

Reference: https://code.visualstudio.com/api/advanced-topics/remote-extensions#incorrect-execution-location


Exactly the same (description copied verbatim) as https://github.com/usernamehw/vscode-error-lens/pull/63, I did this since the value defaults to "workspace" if its unspecified which causes it to break in remote environments.