Interface SignatureHelpRegistrationOptions

Registration options for a SignatureHelpRequest.

interface SignatureHelpRegistrationOptions {
    documentSelector: null | DocumentSelector;
    retriggerCharacters?: string[];
    triggerCharacters?: string[];
    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.

retriggerCharacters?: string[]

List of characters that re-trigger signature help.

These trigger characters are only active when signature help is already showing. All trigger characters are also counted as re-trigger characters.

3.15.0

triggerCharacters?: string[]

List of characters that trigger signature help automatically.

workDoneProgress?: boolean