cursor.go 192 B

12345678910
  1. package input
  2. // CursorPositionEvent represents a cursor position event.
  3. type CursorPositionEvent struct {
  4. // Row is the row number.
  5. Row int
  6. // Column is the column number.
  7. Column int
  8. }