Optional__Deprecated Do not use.
Optional__Deprecated Do not use.
Optionalbrackets?: anyThis property is deprecated and will be ignored from the editor.
OptionaldocComment?: { close?: string; lineStart: string; open: string; scope: string }This property is deprecated and not fully supported anymore by the editor (scope and lineStart are ignored). Use the autoClosingPairs property in the language configuration file instead.
Optionalclose?: stringOptionalautoThe language's auto closing pairs.
OptionalbracketsThe language's brackets. This configuration implicitly affects pressing Enter around these brackets.
OptionalcommentsThe language's comment settings.
OptionalindentationThe language's indentation settings.
OptionalonThe language's rules to be evaluated when pressing Enter.
OptionalwordThe language's word definition. If the language supports Unicode identifiers (e.g. JavaScript), it is preferable to provide a word definition that uses exclusion of known separators. e.g.: A regex that matches anything except known separators (and dot is allowed to occur in a floating point number):
/(-?\d*\.\d\w*)|([^\`\~\!\@\#\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>/\?\s]+)/g
The language configuration interfaces defines the contract between extensions and various editor features, like automatic bracket insertion, automatic indentation etc.