2006-06-01 21:23:28 +04:00
|
|
|
## Here is an example for C/C++.
|
2014-05-15 16:52:30 +04:00
|
|
|
|
2019-08-06 19:51:58 +03:00
|
|
|
syntax c "\.([ch](pp|xx)?|C|cc|c\+\+|cu|H|hh|ii?)$"
|
2019-10-06 12:29:48 +03:00
|
|
|
header "-\*-.*\<C(\+\+)?((;|\s).*)?-\*-"
|
2017-11-19 13:10:53 +03:00
|
|
|
magic "^(C|C\+\+) (source|program)"
|
2016-05-25 23:13:50 +03:00
|
|
|
comment "//"
|
2014-05-15 16:52:30 +04:00
|
|
|
|
2017-08-15 12:00:31 +03:00
|
|
|
# Constants.
|
2014-05-17 00:21:34 +04:00
|
|
|
color brightred "\<[A-Z_][0-9A-Z_]+\>"
|
2017-08-15 12:00:31 +03:00
|
|
|
# Labels.
|
|
|
|
color brightmagenta "^[[:space:]]*[A-Z_a-z]+:[[:space:]]*$"
|
|
|
|
|
2013-06-14 06:48:59 +04:00
|
|
|
color green "\<(float|double|bool|char|int|short|long|sizeof|enum|void|auto|static|const|struct|union|typedef|extern|(un)?signed|inline)\>"
|
2019-08-11 21:06:46 +03:00
|
|
|
color green "\<([[:lower:]][[:lower:]_]*|(u_?)?int(8|16|32|64))_t\>"
|
2017-02-20 21:07:25 +03:00
|
|
|
color green "\<(class|namespace|template|public|protected|private|typename|this|friend|virtual|override|using|mutable|volatile|register|explicit)\>"
|
2006-06-01 21:23:28 +04:00
|
|
|
color brightyellow "\<(for|if|while|do|else|case|default|switch)\>"
|
|
|
|
color brightyellow "\<(try|throw|catch|operator|new|delete)\>"
|
|
|
|
color magenta "\<(goto|continue|break|return)\>"
|
|
|
|
color brightmagenta "'([^'\]|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'"
|
2014-02-23 20:07:44 +04:00
|
|
|
|
2014-05-15 16:52:30 +04:00
|
|
|
# GCC builtins.
|
2006-06-01 21:23:28 +04:00
|
|
|
color cyan "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__"
|
2014-02-23 20:07:44 +04:00
|
|
|
|
2014-05-15 16:52:30 +04:00
|
|
|
# Strings. In general you will want your strings and comments to come last,
|
|
|
|
# because highlighting rules are applied in the order they are read in.
|
2017-12-07 12:13:25 +03:00
|
|
|
color brightyellow ""([^"]|\\")*"" "#[[:space:]]*include[[:space:]]+<[^[:blank:]=]*>"
|
2015-12-29 19:48:25 +03:00
|
|
|
# Multiline strings. This regex is VERY resource intensive,
|
|
|
|
# and sometimes colours things that shouldn't be coloured.
|
|
|
|
###color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
|
2006-06-01 21:23:28 +04:00
|
|
|
|
2017-12-07 12:13:25 +03:00
|
|
|
# Preprocessor directives.
|
|
|
|
color brightcyan start="^[[:space:]]*#[[:space:]]*(if(n?def)?|elif|warning|error|pragma)\>" end="(\`|[^\\])$"
|
|
|
|
color brightcyan "^[[:space:]]*#[[:space:]]*(define|else|endif|include(_next)?|undef)\>"
|
|
|
|
|
2014-05-15 16:52:30 +04:00
|
|
|
# Comments.
|
2006-06-01 21:23:28 +04:00
|
|
|
color brightblue "//.*"
|
2006-08-02 23:30:24 +04:00
|
|
|
color brightblue start="/\*" end="\*/"
|
2007-04-12 02:18:16 +04:00
|
|
|
|
2014-05-15 16:52:30 +04:00
|
|
|
# Reminders.
|
2017-12-07 12:17:25 +03:00
|
|
|
color brightwhite,yellow "\<(FIXME|TODO|XXX)\>"
|
2014-04-13 19:57:05 +04:00
|
|
|
|
2014-05-15 16:52:30 +04:00
|
|
|
# Trailing whitespace.
|
2007-04-12 02:18:16 +04:00
|
|
|
color ,green "[[:space:]]+$"
|