EventPaste is used to mark the start and end of a bracketed paste. An event with .Start() true will be sent to mark the start of a bracketed paste, followed by a number of keys (string data) for the content, ending with the an event with .End() true.
| 24 | // followed by a number of keys (string data) for the content, ending with the |
| 25 | // an event with .End() true. |
| 26 | type EventPaste struct { |
| 27 | start bool |
| 28 | t time.Time |
| 29 | } |
| 30 | |
| 31 | // When returns the time when this EventPaste was created. |
| 32 | func (ev *EventPaste) When() time.Time { |
nothing calls this directly
no outgoing calls
no test coverage detected