]> git.eshelyaron.com Git - sweep.git/commitdiff
FIXED: handle more missing color terms
authorEshel Yaron <me@eshelyaron.com>
Sat, 10 Sep 2022 12:54:02 +0000 (15:54 +0300)
committerEshel Yaron <me@eshelyaron.com>
Sat, 10 Sep 2022 12:54:02 +0000 (15:54 +0300)
sweep.el

index ffa427bdf3b48b828e29852cafd31879a5fb2331..c461402eaea8b3d1651840f5b2fe9dfc6cb9e4ab 100644 (file)
--- a/sweep.el
+++ b/sweep.el
@@ -757,6 +757,8 @@ module name, F is a functor name and N is its arity."
          (put-text-property beg end 'font-lock-face sweep-syntax-error-face))
         ("unused_import"       (put-text-property beg end 'font-lock-face sweep-unused-import-face))
         ("undefined_import"    (put-text-property beg end 'font-lock-face sweep-undefined-import-face))
+        ("html_attribute"      (put-text-property beg end 'font-lock-face sweep-html-attribute-face))
+        ("html_call"           (put-text-property beg end 'font-lock-face sweep-html-call-face))
         ("dict_tag"            (put-text-property beg end 'font-lock-face sweep-dict-tag-face))
         ("dict_key"            (put-text-property beg end 'font-lock-face sweep-dict-key-face))
         ("dict_sep"            (put-text-property beg end 'font-lock-face sweep-dict-sep-face))
@@ -793,6 +795,7 @@ module name, F is a functor name and N is its arity."
         ("clause"              nil)
         ("directive"           nil)
         ("body"                nil)
+        ("html"                nil)
         ("parentheses"         nil)
         ("term"                nil)
         ("expanded"            nil)