Files
cclip/vendor/github.com/charmbracelet/x/input/paste.go
PhatPhuckDave 3c5e991ec5 Add vendor
Specifically because I want to modify a dependency
2024-08-26 01:01:04 +02:00

13 lines
378 B
Go

package input
// PasteEvent is an event that is emitted when a terminal receives pasted text
// using bracketed-paste.
type PasteEvent string
// PasteStartEvent is an event that is emitted when a terminal enters
// bracketed-paste mode.
type PasteStartEvent struct{}
// PasteEvent is an event that is emitted when a terminal receives pasted text.
type PasteEndEvent struct{}