2006-06-01 17:23:28 +00:00
|
|
|
## Here is an example for C/C++.
|
2014-05-15 12:52:30 +00:00
|
|
|
|
2018-05-18 18:40:08 +00:00
|
|
|
syntax c "\.([ch](pp|xx)?|C|cc|c\+\+|H|hh|ii?)$"
|
2017-11-19 10:10:53 +00:00
|
|
|
magic "^(C|C\+\+) (source|program)"
|
2016-05-25 20:13:50 +00:00
|
|
|
comment "//"
|
2014-05-15 12:52:30 +00:00
|
|
|
|
2017-08-15 09:00:31 +00:00
|
|
|
# Constants.
|
2014-05-16 20:21:34 +00:00
|
|
|
color brightred "\<[A-Z_][0-9A-Z_]+\>"
|
2017-08-15 09:00:31 +00:00
|
|
|
# Labels.
|
|
|
|
color brightmagenta "^[[:space:]]*[A-Z_a-z]+:[[:space:]]*$"
|
|
|
|
|
2013-06-14 02:48:59 +00:00
|
|
|
color green "\<(float|double|bool|char|int|short|long|sizeof|enum|void|auto|static|const|struct|union|typedef|extern|(un)?signed|inline)\>"
|
2006-09-16 02:40:31 +00:00
|
|
|
color green "\<((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\>"
|
2017-02-20 18:07:25 +00:00
|
|
|
color green "\<(class|namespace|template|public|protected|private|typename|this|friend|virtual|override|using|mutable|volatile|register|explicit)\>"
|
2006-06-01 17:23:28 +00: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)\>"
|
2010-03-21 05:04:03 +00:00
|
|
|
color brightcyan "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)"
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightmagenta "'([^'\]|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'"
|
2014-02-23 16:07:44 +00:00
|
|
|
|
2014-05-15 12:52:30 +00:00
|
|
|
# GCC builtins.
|
2006-06-01 17:23:28 +00:00
|
|
|
color cyan "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__"
|
2014-02-23 16:07:44 +00:00
|
|
|
|
2014-05-15 12:52:30 +00: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.
|
2016-02-07 13:14:23 +00:00
|
|
|
color brightyellow ""([^"]|\\")*"" "<[^[:blank:]=]*>"
|
2015-12-29 16:48:25 +00: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 17:23:28 +00:00
|
|
|
|
2014-05-15 12:52:30 +00:00
|
|
|
# Comments.
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightblue "//.*"
|
2006-08-02 19:30:24 +00:00
|
|
|
color brightblue start="/\*" end="\*/"
|
2007-04-11 22:18:16 +00:00
|
|
|
|
2014-05-15 12:52:30 +00:00
|
|
|
# Reminders.
|
2017-12-07 09:17:25 +00:00
|
|
|
color brightwhite,yellow "\<(FIXME|TODO|XXX)\>"
|
2014-04-13 15:57:05 +00:00
|
|
|
|
2014-05-15 12:52:30 +00:00
|
|
|
# Trailing whitespace.
|
2007-04-11 22:18:16 +00:00
|
|
|
color ,green "[[:space:]]+$"
|