-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
How to unconfig a configed plugin by calling configurePlugin
#106402
Comments
What do you mean by unconfigure? Can you share an example You can use configure to send a |
@mjbvz I mean just unload the tsserver plugin completely, here's the thing: I need to implement a feature so that the lsp run conditionally determined by both |
There's no support for explicitly unloading a plugin. What you probably want to do is make it so that plugin itself can easily enable/disable itself based on a configuration value (or a configuration sent by
|
@mjbvz Could I |
How to unconfig a configed plugin by calling
configurePlugin(pluginId: string, configuration: ConfigurationField): void;
fromvscode.typescript-language-features
I tried restart the
tsServer
by doing thiscommands.executeCommand("typescript.restartTsServer");
, but didn't workOr how to communicate between the
tssever plugin
and thelanguageclient
The text was updated successfully, but these errors were encountered: