Files
cclip/vendor/github.com/charmbracelet/x/input/cursor.go
PhatPhuckDave 3c5e991ec5 Add vendor
Specifically because I want to modify a dependency
2024-08-26 01:01:04 +02:00

11 lines
192 B
Go

package input
// CursorPositionEvent represents a cursor position event.
type CursorPositionEvent struct {
// Row is the row number.
Row int
// Column is the column number.
Column int
}