Interface TerminalCompletionItem

interface TerminalCompletionItem {
    detail?: string;
    kind?: TerminalCompletionItemKind;
    label: string;
    replacementIndex: number;
    replacementLength: number;
}

Properties

detail?: string

The completion's detail which appears on the right of the list.

The completion's kind. Note that this will map to an icon.

label: string

The label of the completion.

replacementIndex: number

The index of the start of the range to replace.

replacementLength: number

The length of the range to replace.