symbol-processor/syntax-highlighting/def.nanorc

18 lines
417 B
Plaintext
Raw Normal View History

2024-01-17 06:30:14 +00:00
syntax def "\.def$"
comment "//"
# Commands
2024-04-03 07:18:51 +00:00
color magenta "\<(extends|size|vtable(-size|-destructor-offset)?|property|static-property(-array)?|((static|virtual)-)?method|constructor)\>"
2024-01-17 06:30:14 +00:00
# Types
2024-01-21 23:19:13 +00:00
color green "\<(char|uchar|short|ushort|int|uint|float|bool|void|std::(string|vector|map))\>"
2024-01-17 06:30:14 +00:00
# Numbers
color yellow "0x[a-f0-9]+"
# Comments
color brightblue "//.*"
# Trailing whitespace.
color ,green "[[:space:]]+$"