package vcaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Client_info is present for every remote, ui, embedder, host, or plugin attached to neovim.

For more details, run `:h nvim_set_client_info`

module Version : sig ... end
module Client_type : sig ... end
module Client_method : sig ... end
type t = {
  1. version : Version.t option;
  2. methods : Client_method.t Core.String.Map.t;
  3. attributes : string Core.String.Map.t;
  4. name : string option;
  5. type_ : Client_type.t option;
}
val sexp_of_t : t -> Sexplib0.Sexp.t
val of_msgpack : Msgpack.t -> t Core.Or_error.t