Interface AutoClosingPair

Describes pairs of strings where the close string will be automatically inserted when typing the opening string.

interface AutoClosingPair {
    close: string;
    notIn?: SyntaxTokenType[];
    open: string;
}

Properties

Properties

close: string

The closing string that will be automatically inserted when typing the opening string.

notIn?: SyntaxTokenType[]

A set of tokens where the pair should not be auto closed.

open: string

The string that will trigger the automatic insertion of the closing string.