TextDocumentWillSaveEvent
An event that is fired when a document will be saved.
To make modifications to the document before it is being saved, call the {@linkcode TextDocumentWillSaveEvent.waitUntil waitUntil}-function with a thenable that resolves to an array of text edits.
Properties
Functions
Link copied to clipboard
Allows to pause the event loop and to apply pre-save-edits. Edits of subsequent calls to this function will be applied in order. The edits will be ignored if concurrent modifications of the document happened.
Allows to pause the event loop until the provided thenable resolved.