-
Notifications
You must be signed in to change notification settings - Fork 696
Closed
Description
Currently, we're using ad-hoc solution to report progress to vscode extension, using telemetry events. This requires specific client-side support. There's now a better option: reporting the progress using $/progress notifications, that are allowed during the initialize phase if client sends workDoneToken in initialize request. Using it would allow reporting the progress to any compliant client, not just our vscode ext.
Spec links:
Open questions:
- How do we prevent duplicate reports when older vscode ext connects to newer psalm server? Client sniffing?
- Neovim doesn't seem to be sending
workDoneTokenin initialize requests (this can probably be overridden somewhere).
Reactions are currently unavailable