This commit is contained in:
Dax Raad
2025-07-23 22:57:21 -04:00
parent 149f133747
commit 550d2d3f99
123 changed files with 452 additions and 83 deletions

View File

@@ -0,0 +1,14 @@
package input
import "github.com/charmbracelet/x/ansi"
// ModeReportEvent is a message that represents a mode report event (DECRPM).
//
// See: https://vt100.net/docs/vt510-rm/DECRPM.html
type ModeReportEvent struct {
// Mode is the mode number.
Mode ansi.Mode
// Value is the mode value.
Value ansi.ModeSetting
}