LanguageConfiguration$Typings extension

on

Properties

autoClosingPairs List<AutoClosingPair>?

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

The language's auto closing pairs.
getter/setter pair
brackets List<CharacterPair>?

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

The language's brackets. This configuration implicitly affects pressing Enter around these brackets.
getter/setter pair
characterPairSupport ↔ dynamic

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

Deprecated Do not use.
getter/setter pair
comments CommentRule?

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

The language's comment settings.
getter/setter pair
electricCharacterSupport ↔ dynamic

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

Deprecated Do not use.
getter/setter pair
indentationRules IndentationRule?

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

The language's indentation settings.
getter/setter pair
onEnterRules List<OnEnterRule>?

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

The language's rules to be evaluated when pressing Enter.
getter/setter pair
wordPattern RegExp?

Available on LanguageConfiguration, provided by the LanguageConfiguration$Typings extension

The 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
getter/setter pair