LSP save methods textDocument/didSave, textDocument/willSave and textDocument/willSaveWaitUntil are implemented but the requests/notifications are currently never sent to the server.
The FileDocumentManagerListener interface is probably what we need for willSave and willSaveWaitUntil, however there doesn't seem to be support for a listener to be called after a document is saved, so I'm not sure how sending didSave notifications can be implemented.
LSP save methods
textDocument/didSave
,textDocument/willSave
andtextDocument/willSaveWaitUntil
are implemented but the requests/notifications are currently never sent to the server. TheFileDocumentManagerListener
interface is probably what we need forwillSave
andwillSaveWaitUntil
, however there doesn't seem to be support for a listener to be called after a document is saved, so I'm not sure how sendingdidSave
notifications can be implemented.