jon.recoil.org

Module Misc.Style

type color =
  1. | Black
  2. | Red
  3. | Green
  4. | Yellow
  5. | Blue
  6. | Magenta
  7. | Cyan
  8. | White
type style =
  1. | FG of Merlin_utils.Misc.Style.color
  2. | BG of Merlin_utils.Misc.Style.color
  3. | Bold
  4. | Reset
val ansi_of_style_l : Merlin_utils.Misc.Style.style list -> string
type tag_style = {
  1. ansi : Merlin_utils.Misc.Style.style list;
  2. text_open : string;
  3. text_close : string;
}
val as_inline_code : ((Stdlib.Format.formatter -> 'a -> unit) as 'printer) -> 'printer
val inline_code : Stdlib.Format.formatter -> string -> unit
val default_styles : Merlin_utils.Misc.Style.styles
val get_styles : unit -> Merlin_utils.Misc.Style.styles
val set_styles : Merlin_utils.Misc.Style.styles -> unit
val setup : Merlin_utils.Misc.Color.setting option -> unit
val set_tag_handling : Stdlib.Format.formatter -> unit