paste.go
1package tea
2
3// PasteMsg is an message that is emitted when a terminal receives pasted text
4// using bracketed-paste.
5type PasteMsg string
6
7// PasteStartMsg is an message that is emitted when the terminal starts the
8// bracketed-paste text.
9type PasteStartMsg struct{}
10
11// PasteEndMsg is an message that is emitted when the terminal ends the
12// bracketed-paste text.
13type PasteEndMsg struct{}