package vcaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Notification : sig ... end

A Notifier.t sends API calls as asynchronous notifications. In most cases you don't need this; you can just send a regular request and not wait for the result. However, there are some API calls that are documented as being more performant when sent as notifications.

module Error_type = Nvim_internal.Error_type
val notify : [ `connected ] Client.t -> Notification.t -> unit
val error : [ `connected ] Client.t -> Core.Error.t -> unit
module For_testing : sig ... end