Interface SignatureHelpOptions

Server Capabilities for a SignatureHelpRequest.

interface SignatureHelpOptions {
    retriggerCharacters?: string[];
    triggerCharacters?: string[];
    workDoneProgress?: boolean;
}

Hierarchy (View Summary)

Properties

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