coq-lsp.lang
Lang.Point
Example_plugin
coq-lsp.coq
coq-lsp.fleche
coq-lsp.lsp
coq-lsp.plugin
fleche_waterproof
type t = {
line : int;
character : int;
offset : int;
}
ATTENTION: character is a Unicode caracter position, thus from Coq that usually requires conversion, as it will report the column offset in bytes. But offset is in bytes for now, as our downstream clients prefer this format.
character
offset
val pp : Format.formatter -> t -> unit