2006-06-01 17:23:28 +00:00
|
|
|
## Here is an example for C/C++.
|
2014-05-15 12:52:30 +00:00
|
|
|
|
2014-02-22 16:57:23 +00:00
|
|
|
syntax "c" "\.(c(c|pp|xx|\+\+)?|C)$" "\.(h(h|pp|xx)?|H)$" "\.ii?$"
|
2014-05-15 12:52:30 +00:00
|
|
|
magic "(ASCII|UTF-8 Unicode) C(\+\+)? program text"
|
|
|
|
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightred "\<[A-Z_][0-9A-Z_]+\>"
|
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\>"
|
2006-06-01 17:23:28 +00:00
|
|
|
color green "\<(class|namespace|template|public|protected|private|typename|this|friend|virtual|using|mutable|volatile|register|explicit)\>"
|
|
|
|
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.
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightyellow "<[^= ]*>" ""(\\.|[^"])*""
|
2014-05-15 12:52:30 +00:00
|
|
|
# Multiline strings. This regex is VERY resource intensive!
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
|
|
|
|
|
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.
|
2014-04-13 15:57:05 +00:00
|
|
|
color ,yellow "(FIXME|TODO|XXX)"
|
|
|
|
|
2014-05-15 12:52:30 +00:00
|
|
|
# Trailing whitespace.
|
2007-04-11 22:18:16 +00:00
|
|
|
color ,green "[[:space:]]+$"
|