gespenst API - v0.1.0
    Preparing search index...

    Interface SearchOptions

    Controls how retained terminal text is matched.

    interface SearchOptions {
        caseSensitive?: boolean;
        regex?: boolean;
        wholeWord?: boolean;
    }
    Index
    caseSensitive?: boolean

    Match uppercase and lowercase characters separately.

    regex?: boolean

    Interpret the query as a regular expression instead of literal text.

    wholeWord?: boolean

    Only accept matches surrounded by Unicode word boundaries.