Interface TerminalResourceRequestConfig

interface TerminalResourceRequestConfig {
    cwd?: Uri;
    filesRequested?: boolean;
    foldersRequested?: boolean;
    pathSeparator: string;
}

Properties

cwd?: Uri

If no cwd is provided, no resources will be shown as completions.

filesRequested?: boolean

Show files as completion items.

foldersRequested?: boolean

Show folders as completion items.

pathSeparator: string

The path separator to use when constructing paths.