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
The Sprocket VSCode extension on Windows is not working correctly.
When a file is opened in the editor, the current set of diagnostics for the file (correctly) remains unchanged. However, if the file's buffer becomes dirty, the diagnostics disappear completely and remain cleared until the file is closed.
There also appears to be quite a few requests for the file's diagnostics, which are completing in < 10us, presumably with an empty set of diagnostics.
The text was updated successfully, but these errors were encountered:
This fixes LSP requests that contain percent encoded colons and
lowercase drive letters in request URIs.
This caused the analyzer to report an empty set of diagnostics because
the requested document was unknown to the analyzer (it used both a colon
and an uppercase drive letter in the document graph).
The fix is to percent decode the path segments and normalize the drive
letter to uppercase in the LSP server.
Fixesstjude-rust-labs#229.
The Sprocket VSCode extension on Windows is not working correctly.
When a file is opened in the editor, the current set of diagnostics for the file (correctly) remains unchanged. However, if the file's buffer becomes dirty, the diagnostics disappear completely and remain cleared until the file is closed.
There also appears to be quite a few requests for the file's diagnostics, which are completing in < 10us, presumably with an empty set of diagnostics.
The text was updated successfully, but these errors were encountered: