Orca Note Plugin API Documentation
    Preparing search index...

    Interface CursorData

    Represents the current cursor position in the editor. Contains both anchor (start) and focus (end) positions.

    interface CursorData {
        anchor: CursorNodeData;
        focus: CursorNodeData;
        isForward: boolean;
        panelId: string;
        rootBlockId: number;
    }
    Index

    Properties

    Start position of the selection

    End position of the selection

    isForward: boolean

    Whether the selection direction is forward (anchor comes before focus)

    panelId: string

    ID of the panel containing the cursor

    rootBlockId: number

    ID of the root block in the editor