Interface DocumentRangeFormattingRegistrationOptions

Registration options for a DocumentRangeFormattingRequest.

interface DocumentRangeFormattingRegistrationOptions {
    documentSelector: null | DocumentSelector;
    rangesSupport?: boolean;
    workDoneProgress?: boolean;
}

Hierarchy (View Summary)

Properties

documentSelector: null | DocumentSelector

A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

rangesSupport?: boolean

Whether the server supports formatting multiple ranges at once.

3.18.0

workDoneProgress?: boolean