symbol-processor/syntax-highlighting/nano/symbol-processor.nanorc

20 lines
450 B
Plaintext
Raw Normal View History

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-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 "//.*"
# Whitespace.
color normal "[[:space:]]+"
2024-01-17 06:30:14 +00:00
# Trailing whitespace.
color ,green "[[:space:]]+$"