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
When a file is saved, a textDocument/didSave notifications should be sent to the server if it opts-in via TextDocumentSyncOptions.
But if the file gets closed immediately after saving, the notification is not sent (at least here on Windows, and apparently also on CI on all OS, but according to #2438 (comment) it seems to work in practice on Linux).
When a file is saved, a
textDocument/didSave
notifications should be sent to the server if it opts-in via TextDocumentSyncOptions.But if the file gets closed immediately after saving, the notification is not sent (at least here on Windows, and apparently also on CI on all OS, but according to #2438 (comment) it seems to work in practice on Linux).
Key binding example:
I expect to see
textDocument/didSave
in the LSP server log panel beforetextDocument/didClose
, but it's missing.If this gets fixed, this line in the tests could be uncommented:
LSP/tests/test_single_document.py
Line 394 in 4c8da78
The text was updated successfully, but these errors were encountered: