micro/runtime/syntax/clojure.yaml

39 lines
983 B
YAML
Raw Normal View History

2017-03-21 21:55:22 +03:00
filetype: clojure
detect:
filename: "\\.(clj[sc]?|edn)$"
2017-03-21 21:55:22 +03:00
rules:
# Constants
2017-03-21 21:55:22 +03:00
- constant.bool: "\\b(true|false)\\b"
- constant.macro: "\\b(nil)\\b"
# Valid numbers
2017-03-21 21:55:22 +03:00
- constant.number: "[\\-]?[0-9]+?\\b"
- constant.number: "0x[0-9][A-Fa-f]+?\\b"
- constant.number: "[\\-]?(3[0-6]|2[0-9]|1[0-9]|[2-9])r[0-9A-Z]+?\\b"
# Invalid numbers
2017-03-21 21:55:22 +03:00
- error: "[\\-]?([4-9][0-9]|3[7-9]|1|0)r[0-9A-Z]+?\\b"
# Symbols
2017-03-21 21:55:22 +03:00
- symbol.operator: "[=>+\\-*/'?]"
# Types/casting
2017-03-21 21:55:22 +03:00
- type: "\\b(byte|short|(big)?int(eger)?|long|float|num|bigdec|rationalize)\\b"
# String highlighting
- constant.string:
start: "\""
end: "\""
2017-03-29 16:45:16 +03:00
skip: "\\\\."
rules:
- constant.specialChar: "(\\\\u[0-9A-fa-f]{4,4}|\\\\newline|\\\\space|\\\\tab|\\\\formfeed|\\\\backspace|\\\\return|\\\\.)"
# Comments
- comment:
start: ";"
end: "$"
rules:
- todo: "(TODO|XXX|FIXME):?"