aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ide/tags.ml3
-rw-r--r--ide/tags.mli1
2 files changed, 3 insertions, 1 deletions
diff --git a/ide/tags.ml b/ide/tags.ml
index eff9c46a9..9af54831f 100644
--- a/ide/tags.ml
+++ b/ide/tags.ml
@@ -26,9 +26,10 @@ struct
let unjustified = make_tag table ~name:"unjustified" [`BACKGROUND "gold";`EDITABLE false]
let found = make_tag table ~name:"found" [`BACKGROUND "blue"; `FOREGROUND "white"]
let sentence = make_tag table ~name:"sentence" []
+ let tooltip = make_tag table ~name:"tooltip" [] (* debug:`BACKGROUND "blue" *)
let all =
[comment_sentence; error; to_process; processed; unjustified;
- found; sentence]
+ found; sentence; tooltip]
end
module Proof =
struct
diff --git a/ide/tags.mli b/ide/tags.mli
index 1a9b22d00..d86dcbc44 100644
--- a/ide/tags.mli
+++ b/ide/tags.mli
@@ -16,6 +16,7 @@ sig
val unjustified : GText.tag
val found : GText.tag
val sentence : GText.tag
+ val tooltip : GText.tag
val all : GText.tag list
end