/usr/lib/ocaml/lambda-term/lTerm_event.mli is in liblambda-term-ocaml-dev 1.10.1-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | (*
* lTerm_event.mli
* ---------------
* Copyright : (c) 2011, Jeremie Dimino <jeremie@dimino.org>
* Licence : BSD3
*
* This file is a part of Lambda-Term.
*)
(** Events *)
(** Event from the terminal. *)
type t =
| Resize of LTerm_geom.size
(** The terminal has been resized. *)
| Key of LTerm_key.t
(** A key has been pressed. *)
| Sequence of string
(** An uninterpreted escape sequence. *)
| Mouse of LTerm_mouse.t
(** A mouse button has been pressed. *)
val to_string : t -> string
(** [to_string event] returns the string representation of the given
event. *)
|