Represents a code lens - an actionable UI element displayed above a code line

interface CodeLense {
    command?: Ace.CodeLenseCommand;
    start: Ace.Point;
}

Properties

Properties

Command to execute when the code lens is activated

start: Ace.Point

Starting position where the code lens should be displayed

Generated using TypeDoc