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

13 lines
253 B
Go

package input
// ReportModeEvent represents a report mode event for sequence DECRPM.
//
// See: https://vt100.net/docs/vt510-rm/DECRPM.html
type ReportModeEvent struct {
// Mode is the mode number.
Mode int
// Value is the mode value.
Value int
}