Module Incr_dom_keyboard.Help_text

module View_spec : sig ... end
module Command : sig ... end
type t
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
type t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val compare : t -> t -> int
val empty : t
val is_empty : t -> bool
val of_command_list : Command.t list -> t
val add_command : t -> Command.t -> t

add_command is linear in the number of commands in t.

val commands : t -> Command.t list
val view : ?⁠sep:string -> t -> View_spec.t -> Incr_dom_keyboard__.Import.Vdom.Node.t

view displays a help text table with one row per command.

view_rows is similar to view, but returns a list of row nodes instead of wrapping them in a table node.

val view_rows : ?⁠sep:string -> t -> View_spec.t -> Incr_dom_keyboard__.Import.Vdom.Node.t list