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