fix(lsp): Request document sync on open/close#533
Merged
searls merged 1 commit intostandardrb:mainfrom Mar 6, 2023
Merged
Conversation
Without sending `open_close: true` to the client, it may not issue an `textDocument/didOpen` event with document text to allow the diagnostics and text cache to be initialized after opening, but prior to editing, the document. Format requests also emit "Format request arrived before text synchronized" in this state. The didClose event probably also doesn't arrive to see cache entries removed. Observed in neovim 0.8.3 using internal client, while vim with prabirshrestha/vim-lsp sends the event regardless (but does not currently issue didClose).
Contributor
|
Hard for me to validate this is correct, but I definitely believe it based on my own frustrations observing this behavior with the VS Code extension. Thanks for the submission. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Without sending
open_close: trueto the client, it may not issue antextDocument/didOpenevent with document text to allow the diagnostics and text cache to be initialized after opening, but prior to editing, the document. Format requests also emit "Format request arrived before text synchronized" in this state. The didClose event probably also doesn't arrive to see cache entries removed.Observed in neovim 0.8.3 using internal client, while vim with prabirshrestha/vim-lsp sends the event regardless (but does not currently issue didClose).