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
I just had trouble diagnosing a LanguageClient which did not resolve or reject the onReady promise, and I could not find an exception noted anywhere.
LanguageClient
onReady
Similar to this issue - there was an exception in initializeFeatures https://github.com/Microsoft/vscode-languageserver-node/blob/020764e3eacc76138ffbf63f09489adbfb9e1be8/client/src/client.ts#L2614
initializeFeatures
Is this as simple as moving then(..., ...) to then(...).catch(...) ?
then(..., ...)
then(...).catch(...)
The text was updated successfully, but these errors were encountered:
@nwolverson thanks. Since VS Code's Thenable interface doesn't offer a catch I changed it to then(...).then(undefined, ....).
then(...).then(undefined, ....)
Sorry, something went wrong.
c4bab17
No branches or pull requests
I just had trouble diagnosing a
LanguageClient
which did not resolve or reject theonReady
promise, and I could not find an exception noted anywhere.Similar to this issue - there was an exception in
initializeFeatures
https://github.com/Microsoft/vscode-languageserver-node/blob/020764e3eacc76138ffbf63f09489adbfb9e1be8/client/src/client.ts#L2614Is this as simple as moving
then(..., ...)
tothen(...).catch(...)
?The text was updated successfully, but these errors were encountered: