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
{{ message }}
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
I am sending a diagnostic to the VSCode with following LSP server:
let param = PublishDiagnosticsParams {...}
let not = lsp_server::Notification::new(N::METHOD.to_string(), params);
connection.sender.send<...>(not.into())
However, nothing happened in the VSCode, the notification sent successfully from the sender.send call. Can anyone enlighten me where could be the potential issue?
(the file path, start and end position is correct)
I am sending a diagnostic to the VSCode with following LSP server:
However, nothing happened in the VSCode, the notification sent successfully from the sender.send call. Can anyone enlighten me where could be the potential issue?
(the file path, start and end position is correct)