package lambda-term

  1. Overview
  2. Docs
Terminal manipulation library for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

3.4.0.tar.gz
sha512=e3014f90346a1c02846047edf6d9c494de860c1b2de31c6561548221b0723e9cf3790ff9950d7958e68faaa9e44aa210eaf74e92cc119b45dcbc93ade9c14647

doc/lambda-term/LTerm_unix/index.html

Module LTerm_unixSource

Unix specific functions

Sourceval sigwinch : int option

The number of the signal used to indicate that the terminal size have changed. It is None on windows.

Sourceval system_encoding : string

The encoding used by the system.

Sourceval parse_event : ?escape_time:float -> char Lwt_stream.t -> LTerm_event.t Lwt.t

parse_event encoding stream parses one event from the given input stream. encoding is the character encoding used to decode non-ascii characters. It must be a converter from the stream encoding to "UCS-4BE". If an invalid sequence is encountered in the input, it fallbacks to Latin-1. escape_time is the time waited before returning the escape key. It defaults to 0.1.