mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-05 22:50:21 +09:00
This may be a breaking change if you are using a plugin that checks the filetype. All the default plugins are now updated, just make the filetype you were checking for previously all lowercase.
9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
## Here is a short example for TeX files.
|
|
##
|
|
syntax "tex" "\.tex$" "bib" "\.bib$" "cls" "\.cls$"
|
|
color yellow "\$[^$]*\$"
|
|
green (i) "\\.|\\[A-Z]*"
|
|
color magenta "[{}]"
|
|
color blue "%.*"
|
|
color blue start="\\begin\{comment\}" end="\\end\{comment\}"
|