Reload extension without window reload in web build #2389
-
I'd like to be able to reload just my extension programmatically. However, I'll take reloading the whole extension host. I just don't want to reload the window. Unfortunately, when building for the web, I don't see the command "Developer: Restart Extension Host" ... is there a way to enable it to be called by code? Is there any other way to get VSCode to reload the source for my extension without reloading the window? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
VS Code can not just restart your extension. It can restart the whole extension host that has all the extensions running. |
Beta Was this translation helpful? Give feedback.
VS Code can not just restart your extension. It can restart the whole extension host that has all the extensions running.
You can trigger this functionality from your extension by using the
executeCommand
API.