feat(emacs/lean-syntax): add 'eassumption' highlight

This commit is contained in:
Leonardo de Moura 2014-10-26 15:45:26 -07:00
parent fd60cf6a79
commit 08e8161243

View file

@ -118,7 +118,7 @@
(,(rx "\[priority" (zero-or-more (not (any "\]"))) "\]") . font-lock-doc-face)
;; tactics
(,(rx (not (any "\.")) word-start
(or "\\b.*_tac" "Cond" "or_else" "then" "try" "when" "assumption" "rapply" "apply" "rename" "intro" "intros"
(or "\\b.*_tac" "Cond" "or_else" "then" "try" "when" "assumption" "eassumption" "rapply" "apply" "rename" "intro" "intros"
"generalize" "back" "beta" "done" "exact" "repeat")
word-end)
. 'font-lock-constant-face)