module LTerm_event:sig
..end
type
t =
| |
Resize of |
(* | The terminal has been resized. | *) |
| |
Key of |
(* | A key has been pressed. | *) |
| |
Sequence of |
(* | An uninterpreted escape sequence. | *) |
| |
Mouse of |
(* | A mouse button has been pressed. | *) |
val to_string : t -> string
to_string event
returns the string representation of the given
event.