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
Currently, the VS Code extension injects logging capabilities after creating a services object. Extensions for other language clients would need to do the same.
Instead, we can send messages to the client via
services.shared.lsp.Connection.console, and
services.shared.lsp.Connection.window.
The text was updated successfully, but these errors were encountered:
Closes#1002
### Summary of Changes
* It's now possible to configure messaging (logging/user messaging) for
when creating services.
* The runner now uses the `MessagingProvider` instead of handling
messaging on its own.
Currently, the VS Code extension injects logging capabilities after creating a services object. Extensions for other language clients would need to do the same.
Instead, we can send messages to the client via
services.shared.lsp.Connection.console
, andservices.shared.lsp.Connection.window
.The text was updated successfully, but these errors were encountered: