2024-01-17 06:30:14 +00:00
|
|
|
syntax def "\.def$"
|
|
|
|
comment "//"
|
|
|
|
|
|
|
|
# Commands
|
2024-05-03 04:46:21 +00:00
|
|
|
color magenta "\<(extends|size|vtable(-size|-destructor-offset)?|property|static-property|((static|virtual)-)?method|constructor)\>"
|
2024-01-17 06:30:14 +00:00
|
|
|
|
|
|
|
# Types
|
2024-07-14 09:03:18 +00:00
|
|
|
color green "\<((u?(char|short|int))|float|bool|void|std::(string|vector|map))\>"
|
2024-01-17 06:30:14 +00:00
|
|
|
|
|
|
|
# Numbers
|
|
|
|
color yellow "0x[a-f0-9]+"
|
2024-07-14 09:03:18 +00:00
|
|
|
# Non-hex numbers
|
|
|
|
color red " [0-9][a-f0-9]+;"
|
2024-01-17 06:30:14 +00:00
|
|
|
|
|
|
|
# Comments
|
|
|
|
color brightblue "//.*"
|
|
|
|
|
2024-05-05 04:40:22 +00:00
|
|
|
# Whitespace.
|
|
|
|
color normal "[[:space:]]+"
|
2024-01-17 06:30:14 +00:00
|
|
|
# Trailing whitespace.
|
|
|
|
color ,green "[[:space:]]+$"
|