package notty-community

  1. Overview
  2. Docs
Declaring terminals

Install

dune-project
 Dependency

Authors

Maintainers

Sources

notty-community-0.2.4.tar.gz
md5=b8cb51edb37d28d9d53e98ac52848677
sha512=8922a190a412790285603ba7ab37f9f58202d9406ebc9e6d3329189eac7fda5c25316264c27b6f7decb8f25f0d78801873b9f16c40e90f020e2c06ab9d058686

doc/notty-community.lwt/Notty_lwt/index.html

Module Notty_lwtSource

Notty IO Lwt on Unix.

This is an IO module for Notty.

It mirrors Notty_unix and the corresponding operations behave analogously. Consult its documentation for more info.

%%VERSION%% — homepage

Fullscreen input and output

Sourcemodule Term : sig ... end

Terminal IO with concurrency.

Inline output

Sourceval winsize : Lwt_unix.file_descr -> (int * int) option
Sourceval output_image : ?cap:Notty.Cap.t -> ?fd:Lwt_unix.file_descr -> Notty.image -> unit Lwt.t
Sourceval output_image_size : ?cap:Notty.Cap.t -> ?fd:Lwt_unix.file_descr -> ((int * int) -> Notty.image) -> unit Lwt.t
Sourceval show_cursor : ?cap:Notty.Cap.t -> ?fd:Lwt_unix.file_descr -> bool -> unit Lwt.t
Sourceval move_cursor : ?cap:Notty.Cap.t -> ?fd:Lwt_unix.file_descr -> [ `Home | `By of int * int | `To of int * int ] -> unit Lwt.t