interface ModeConfiguration {
    colors?: boolean;
    completionItems?: boolean;
    definitions?: boolean;
    diagnostics?: boolean;
    documentFormattingEdits?: boolean;
    documentHighlights?: boolean;
    documentRangeFormattingEdits?: boolean;
    documentSymbols?: boolean;
    foldingRanges?: boolean;
    hovers?: boolean;
    references?: boolean;
    rename?: boolean;
    selectionRanges?: boolean;
}

Properties

colors?: boolean

Defines whether the built-in color provider is enabled.

completionItems?: boolean

Defines whether the built-in completionItemProvider is enabled.

definitions?: boolean

Defines whether the built-in definitions provider is enabled.

diagnostics?: boolean

Defines whether the built-in diagnostic provider is enabled.

documentFormattingEdits?: boolean

Defines whether the built-in document formatting edit provider is enabled.

documentHighlights?: boolean

Defines whether the built-in references provider is enabled.

documentRangeFormattingEdits?: boolean

Defines whether the built-in document formatting range edit provider is enabled.

documentSymbols?: boolean

Defines whether the built-in documentSymbolProvider is enabled.

foldingRanges?: boolean

Defines whether the built-in foldingRange provider is enabled.

hovers?: boolean

Defines whether the built-in hoverProvider is enabled.

references?: boolean

Defines whether the built-in references provider is enabled.

rename?: boolean

Defines whether the built-in rename provider is enabled.

selectionRanges?: boolean

Defines whether the built-in selection range provider is enabled.