Theia API Documentation v1.65.0
    Preparing search index...

    Functions that provide shell quoting capabilities.

    interface ShellQuotingFunctions {
        characters: {
            escape?: string;
            needQuotes?: string;
            strong?: string;
            weak?: string;
        };
        escape?(this: any, arg: string): string;
        strong?(this: any, arg: string): string;
        weak?(this: any, arg: string): string;
    }
    Index

    Properties

    Methods

    Properties

    characters: {
        escape?: string;
        needQuotes?: string;
        strong?: string;
        weak?: string;
    }

    Type Declaration

    • Optionalescape?: string

      The character used to escape sequences.

    • OptionalneedQuotes?: string

      Characters that require quotes, white space is always implied.

    • Optionalstrong?: string

      The character used to quote sequences, preventing variable expansion.

    • Optionalweak?: string

      The character used to quote sequences, allowing variable expansion.

    Methods