We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FB extension.
Signature here: https://github.com/facebook/hhvm/blob/master/hphp/hack/src/utils/lsp.ml#L850
Efforts to standardize this at microsoft/language-server-protocol#245 and microsoft/language-server-protocol#511
The text was updated successfully, but these errors were encountered:
What is the best way to get progress messages from the language server? Any current use case?
Sorry, something went wrong.
If they're in clientcapabilities, they should be pushed.
I believe that Hack will push them when initializing if it's not already running; if supported, HHAST could also push them for the whole-repo lint
@fredemmott updated permalink: https://github.com/facebook/hhvm/blob/0c4c1b966bec9cae74d9d35d13ffc93c449fa00a/hphp/hack/src/utils/lsp/lsp.ml#L1007
I updated the initialize request to send over the following (in client capabilities):
"workspace": { ... }, "textDocument": { ... }, "window": { "status": true, "progress": true }
but still don't get any of those requests from the language server. Anything else I should be doing?
No branches or pull requests
FB extension.
Signature here: https://github.com/facebook/hhvm/blob/master/hphp/hack/src/utils/lsp.ml#L850
Efforts to standardize this at microsoft/language-server-protocol#245 and microsoft/language-server-protocol#511
The text was updated successfully, but these errors were encountered: