package utop

  1. Overview
  2. Docs

Styled loaded from ~/.utoprc

type styles = {
  1. mutable style_keyword : LTerm_style.t;
  2. mutable style_symbol : LTerm_style.t;
  3. mutable style_ident : LTerm_style.t;
  4. mutable style_module : LTerm_style.t;
  5. mutable style_constant : LTerm_style.t;
  6. mutable style_char : LTerm_style.t;
  7. mutable style_string : LTerm_style.t;
  8. mutable style_quotation : LTerm_style.t;
  9. mutable style_comment : LTerm_style.t;
  10. mutable style_doc : LTerm_style.t;
  11. mutable style_blanks : LTerm_style.t;
  12. mutable style_error : LTerm_style.t;
  13. mutable style_directive : LTerm_style.t;
  14. mutable style_paren : LTerm_style.t;
  15. mutable style_font : string option;
  16. mutable style_foreground : LTerm_style.color option;
  17. mutable style_background : LTerm_style.color option;
  18. mutable style_cursor : LTerm_style.color option;
}

Type of utop styles.

val styles : styles

The styles in use.

val load : unit -> unit Lwt.t

Load resources into styles.

val stylise : (UTop_token.location -> LTerm_style.t -> unit) -> (UTop_token.t * UTop_token.location) list -> unit

stylise apply tokens calls apply on all token locations with the associated style.