chore(emacs/lean-syntax): highlight mutual_definition and mutual_inductive

This commit is contained in:
Leonardo de Moura 2016-08-09 18:49:26 -07:00
parent 4e307f906f
commit 6d21896cd5

View file

@ -20,7 +20,8 @@
"attribute" "local" "set_option" "extends" "include" "omit" "classes"
"instances" "coercions" "metaclasses" "raw" "migrate" "replacing"
"calc" "have" "show" "suffices" "by" "in" "at" "do" "let" "forall" "Pi" "fun"
"exists" "if" "dif" "then" "else" "assume" "take" "obtain" "from" "aliases" "register_simp_ext")
"exists" "if" "dif" "then" "else" "assume" "take" "obtain" "from" "aliases" "register_simp_ext"
"mutual_definition" "mutual_inductive")
"lean keywords ending with 'word' (not symbol)")
(defconst lean-keywords1-regexp
(eval `(rx word-start (or ,@lean-keywords1) word-end)))