aboutsummaryrefslogtreecommitdiffhomepage
path: root/lego
diff options
context:
space:
mode:
Diffstat (limited to 'lego')
-rw-r--r--lego/lego-syntax.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lego/lego-syntax.el b/lego/lego-syntax.el
index 0373a5cb..363044de 100644
--- a/lego/lego-syntax.el
+++ b/lego/lego-syntax.el
@@ -76,7 +76,11 @@
;; Kinds
(cons (concat "\\<Prop\\>\\|\\<Type\\s *\\(("
- lego-id ")\\)?") 'font-lock-type-face))
+ lego-id ")\\)?") 'font-lock-type-face)
+
+ ;; Special hacks!!
+ (cons "Discharge.." 'font-lock-keyword-face)
+ (cons "\\*\\*\\* QED \\*\\*\\*" 'font-lock-keyword-face))
"*Font-lock table for LEGO terms.")
;; Instead of "[^:]+", it may be better to use "lego-id". Furthermore,