Interface IInlineCompleterActions

interface IInlineCompleterActions {
    accept(id): void;
    configure(settings): void;
    cycle(id, direction): void;
    invoke(id): void;
}

Methods

  • Experimental

    Accept active inline completion.

    Parameters

    • id: string

      the id of notebook panel, console panel or code editor.

    Returns void

  • Experimental

    Switch to next or previous completion of inline completer.

    Parameters

    • id: string

      the id of notebook panel, console panel or code editor.

    • direction: "next" | "previous"

      the cycling direction

    Returns void

  • Experimental

    Invoke inline completer.

    Parameters

    • id: string

      the id of notebook panel, console panel or code editor.

    Returns void