aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/tags.ml
diff options
context:
space:
mode:
authorGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-25 14:14:25 +0000
committerGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-25 14:14:25 +0000
commit0a5720391f3f663d5984a60958c44219fe368611 (patch)
treea78cadd490c9858094ebd2fb8ea362d28afd220a /ide/tags.ml
parentd284deddaf736d2387a79b219f328915bc12614c (diff)
Coqide: new tag "tooltip" for the Script window
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16453 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/tags.ml')
-rw-r--r--ide/tags.ml3
1 files changed, 2 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