This commit is contained in:
Dax Raad
2025-07-23 22:57:21 -04:00
parent 24be6e6901
commit b7447dc2d2
128 changed files with 457 additions and 83 deletions

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{}