aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar gmelquio <gmelquio@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-30 13:32:18 +0000
committerGravatar gmelquio <gmelquio@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-10-30 13:32:18 +0000
commitcb6a920659b8e67092ce21ffe94895d102887c24 (patch)
treec6983addd98b52ad41f123b168d6e0c46430ecb0
parent8190e7cd8e858f5336747bf2a59246753ee83502 (diff)
Added Coqide highlighting for extraction vernacular.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12448 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--ide/highlight.mll5
1 files changed, 5 insertions, 0 deletions
diff --git a/ide/highlight.mll b/ide/highlight.mll
index 6e4fc0552..39da08906 100644
--- a/ide/highlight.mll
+++ b/ide/highlight.mll
@@ -98,6 +98,11 @@ let multiword_command =
| "Implicit" space+ "Arguments"
| "Implicit" space+ ("Type"|"Types")
| "Combined" space+ "Scheme"
+| "Extraction" space+ (("Language" space+ ("Ocaml"|"Haskell"|"Scheme"|"Toplevel"))|
+ ("Library"|"Inline"|"NoInline"|"Blacklist"))
+| "Recursive" space+ "Extraction" (space+ "Library")?
+| ("Print"|"Reset") space+ "Extraction" space+ ("Inline"|"Blacklist")
+| "Extract" space+ (("Inlined" space+) "Constant"| "Inductive")
(* At least still missing: "Inline" + decl, variants of "Identity
Coercion", variants of Print, Add, ... *)