Replies: 1 comment 1 reply
-
To answer the question: Yes, pull diagnostics are supported. The thing I was missing was editor service override. Without it, vscode-languageclient though the file was not in visible tab and diagnostics were not pulled. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When working with csharp lsp, it uses pull model for diagnostics. Specifically, when I open file with
textDocument/didOpen
vscode pulls all previously registered diagnostics capabilities withtextDocument/diagnostic
.I'm having trouble getting it to work on monaco-languageclient.
Server correctly registers capabilities
But when I open file in monaco editor,
textDocument/diagnostic
are not called. Is this something I need to implement myself or do I need to troubleshoot my monaco-languageclient?Beta Was this translation helpful? Give feedback.
All reactions