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

    Interface TerminalResourceRequestConfig

    Configuration for requesting file and folder resources to be shown as completions.

    When a provider indicates that it wants file/folder resources, the terminal will surface completions for files and folders that match globPattern from the provided cwd.

    interface TerminalResourceRequestConfig {
        cwd: Uri;
        filesRequested?: boolean;
        foldersRequested?: boolean;
        globPattern?: GlobPattern;
    }
    Index

    Properties

    cwd: Uri

    The cwd from which to request resources.

    filesRequested?: boolean

    Show files as completion items.

    foldersRequested?: boolean

    Show folders as completion items.

    globPattern?: GlobPattern

    A glob pattern that controls which files suggest should surface.