fix(tui): mouse wheel ansi codes leaking into editor

This commit is contained in:
adamdotdevin
2025-07-10 15:49:49 -05:00
parent c9f3e18736
commit 94ea176b93
35 changed files with 6104 additions and 61 deletions
+13
View File
@@ -0,0 +1,13 @@
package input
// PasteEvent is an message that is emitted when a terminal receives pasted text
// using bracketed-paste.
type PasteEvent string
// PasteStartEvent is an message that is emitted when the terminal starts the
// bracketed-paste text.
type PasteStartEvent struct{}
// PasteEndEvent is an message that is emitted when the terminal ends the
// bracketed-paste text.
type PasteEndEvent struct{}