micro/runtime/syntax/tex.micro

9 lines
246 B
Text
Raw Normal View History

2016-03-21 19:16:02 +03:00
## Here is a short example for TeX files.
##
syntax "TeX" "\.tex$" "bib" "\.bib$" "cls" "\.cls$"
color yellow "\$[^$]*\$"
2016-03-25 23:41:36 +03:00
green (i) "\\.|\\[A-Z]*"
2016-03-21 19:16:02 +03:00
color magenta "[{}]"
color blue "%.*"
2016-03-25 23:41:36 +03:00
color blue start="\\begin\{comment\}" end="\\end\{comment\}"