Interface IEditorHoverOptions

Configuration options for editor hover

interface IEditorHoverOptions {
    above?: boolean;
    delay?: number;
    enabled?: boolean;
    hidingDelay?: number;
    sticky?: boolean;
}

Properties

above?: boolean

Should the hover be shown above the line if possible? Defaults to false.

delay?: number

Delay for showing the hover. Defaults to 300.

enabled?: boolean

Enable the hover. Defaults to true.

hidingDelay?: number

Controls how long the hover is visible after you hovered out of it. Require sticky setting to be true.

sticky?: boolean

Is the hover sticky such that it can be clicked and its contents selected? Defaults to true.