paste.go 407 B

12345678910111213
  1. package input
  2. // PasteEvent is an message that is emitted when a terminal receives pasted text
  3. // using bracketed-paste.
  4. type PasteEvent string
  5. // PasteStartEvent is an message that is emitted when the terminal starts the
  6. // bracketed-paste text.
  7. type PasteStartEvent struct{}
  8. // PasteEndEvent is an message that is emitted when the terminal ends the
  9. // bracketed-paste text.
  10. type PasteEndEvent struct{}