Interface IEditorHoverOptions
Expand description
interface IEditorHoverOptions {
above?: boolean;
delay?: number;
enabled?: boolean;
hidingDelay?: number;
sticky?: boolean;
}Properties§
§§§§§
above?: booleanShould the hover be shown above the line if possible? Defaults to false.
delay?: numberDelay for showing the hover. Defaults to 300.
enabled?: booleanEnable the hover. Defaults to true.
hiding Delay?: numberControls how long the hover is visible after you hovered out of it. Require sticky setting to be true.
sticky?: booleanIs the hover sticky such that it can be clicked and its contents selected? Defaults to true.
Configuration options for editor hover