Theia API Documentation v1.65.0
    Preparing search index...
    interface TerminalObserver {
        nrOfLinesToMatch: number;
        outputMatcherRegex: string;
        matchOccurred(groups: string[]): void;
    }
    Index

    Properties

    nrOfLinesToMatch: number

    The maximum number of lines to match the regex against. Maximum is 40 lines.

    outputMatcherRegex: string

    A regex to match against the latest terminal output.

    Methods

    • Invoked when the regex matched against the terminal contents.

      Parameters

      • groups: string[]

        The matched groups

      Returns void