aboutsummaryrefslogtreecommitdiffhomepage
path: root/vernac/topfmt.mli
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2016-12-05 17:56:22 +0100
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-03-21 15:51:39 +0100
commit3fc02bb2034a648c9c27b76a9e7b4e02a78e55b9 (patch)
treecf3856edc9b24a75d30f465e6e29a42962329a4a /vernac/topfmt.mli
parenta8ec2dc5c330ded1ba400ef202c57e68d2533312 (diff)
[pp] Move terminal-specific tagging to the toplevel.
Previously, tags were associated to terminal styles, which doesn't make sense on terminal-free pretty printing scenarios. This commit moves tag interpretation to the toplevel terminal handling module `Topfmt`.
Diffstat (limited to 'vernac/topfmt.mli')
-rw-r--r--vernac/topfmt.mli6
1 files changed, 6 insertions, 0 deletions
diff --git a/vernac/topfmt.mli b/vernac/topfmt.mli
index 38a400cfd..1555f80a9 100644
--- a/vernac/topfmt.mli
+++ b/vernac/topfmt.mli
@@ -36,12 +36,18 @@ val get_depth_boxes : unit -> int option
val set_margin : int option -> unit
val get_margin : unit -> int option
+(** Headers for tagging *)
+val err_hdr : Pp.std_ppcmds
+
(** Console display of feedback *)
val std_logger : ?loc:Loc.t -> Feedback.level -> Pp.std_ppcmds -> unit
val emacs_logger : ?loc:Loc.t -> Feedback.level -> Pp.std_ppcmds -> unit
val init_color_output : unit -> unit
+val clear_styles : unit -> unit
+val parse_color_config : string -> unit
+val dump_tags : unit -> (string * Terminal.style) list
(** [with_output_to_file file f x] executes [f x] with logging
redirected to a file [file] *)