package vcaml

  1. Overview
  2. Docs

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 : Vcaml__.Types.Client_info.version option;
  2. methods : Vcaml__.Types.Client_info.client_method Core.String.Map.t;
  3. attributes : string Core.String.Map.t;
  4. name : string option;
  5. type_ : [ `Remote | `Ui | `Embedder | `Host | `Plugin ] option;
}
val of_msgpack : Msgpack.t -> t Core.Or_error.t