package coq-lsp

  1. Overview
  2. Docs
type t = {
  1. trace : string -> ?extra:string -> string -> unit;
    (*

    Send a log message, extra may contain information to be shown in verbose mode

    *)
  2. send_diagnostics : ofmt:Format.formatter -> uri:string -> version:int -> Types.Diagnostic.t list -> unit;
  3. send_fileProgress : ofmt:Format.formatter -> uri:string -> version:int -> Progress.Info.t list -> unit;
}
val set : t -> unit