/usr/lib/ocaml/lambda-term/lTerm_inputrc.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 | (*
* lTerm_inputrc.mli
* -----------------
* Copyright : (c) 2011, Jeremie Dimino <jeremie@dimino.org>
* Licence : BSD3
*
* This file is a part of Lambda-Term.
*)
(** Loading of key bindings *)
exception Parse_error of string * int * string
(** [Parse_error(source, line, message)] is raised when the inputrc
file contains errors. *)
val load : ?file : string -> unit -> unit Lwt.t
(** [load ?file ()] loads key bindings from [file], which defaults
to ~/.lambda-term-inputrc, if it exists. *)
val default : string
(** The name of the default key bindings file,
i.e. ~/.lambda-term-inputrc. *)
|