Improve new syntax files and fix a region glitch

This commit is contained in:
Zachary Yedidia
2017-03-21 15:07:39 -04:00
parent b977bf5cca
commit 54bb99d758
67 changed files with 2941 additions and 642 deletions

View File

@@ -4,23 +4,28 @@ detect:
filename: "\\.tex$|bib|\\.bib$|cls|\\.cls$"
rules:
# colorize the identifiers of {<identifier>} and [<identifier>]
- identifier:
start: "\\{"
end: "\\}"
rules: []
- identifier:
start: "\\["
end: "\\]"
rules: []
# numbers
- constant.number: "\\b[0-9]+(\\.[0-9]+)?([[:space:]](pt|mm|cm|in|ex|em|bp|pc|dd|cc|nd|nc|sp))?\\b"
- symbol.brackets: "[{}\\[\\]]"
# let brackets have the default color again
- default: "[{}\\[\\]]"
- special: "[&\\\\]"
- identifier.macro: "\\\\@?[a-zA-Z_]+"
- comment: "%.*"
# macros
- statement: "\\\\@?[a-zA-Z_]+"
# comments
- comment:
start: "%"
end: "$"
rules: []
- comment:
start: "\\\\begin\\{comment\\}"
end: "\\\\end\\{comment\\}"
rules: []