interface IGuidesOptions {
    bracketPairs?: boolean | "active";
    bracketPairsHorizontal?: boolean | "active";
    highlightActiveBracketPair?: boolean;
    highlightActiveIndentation?: boolean | "always";
    indentation?: boolean;
}

Properties

bracketPairs?: boolean | "active"

Enable rendering of bracket pair guides. Defaults to false.

bracketPairsHorizontal?: boolean | "active"

Enable rendering of vertical bracket pair guides. Defaults to 'active'.

highlightActiveBracketPair?: boolean

Enable highlighting of the active bracket pair. Defaults to true.

highlightActiveIndentation?: boolean | "always"

Enable highlighting of the active indent guide. Defaults to true.

indentation?: boolean

Enable rendering of indent guides. Defaults to true.