Vcaml.Vcaml_errormodule Notification : sig ... endmodule Nvim_error_event : sig ... endAn Nvim_error_event is an asynchronous notification that Neovim sends us of an error, typically in response to an asynchronous request we made.
type t = | Msgpack_rpc_error of Msgpack_rpc.Error.t| Nvim_error_event of Nvim_error_event.t| Nvim_error_event_parse_failure of Notification.t| Nvim_buffer_event_parse_failure of exn * Notification.t| Nvim_ui_event_parse_failure of exn * Notification.tval sexp_of_t : t -> Sexplib0.Sexp.tval to_error : t -> Core.Error.t