2012-01-23 15:00:33 +01:00
|
|
|
hook global WinCreate .*\.(c|cc|cpp|cxx|C|h|hh|hpp|hxx|H) \
|
2012-01-15 18:35:25 +01:00
|
|
|
addhl group hlcpp; \
|
2012-01-18 01:15:10 +01:00
|
|
|
addgrouphl hlcpp regex "\<(true|false|NULL|nullptr)\>|\<-?\d+[fdiu]?|'((\\.)?|[^'\\])'" red default; \
|
|
|
|
addgrouphl hlcpp regex "\<(void|int|char|unsigned|float|bool|size_t)\>" yellow default; \
|
|
|
|
addgrouphl hlcpp regex "\<(while|for|if|else|do|switch|case|default|goto|break|continue|return|using|try|catch|throw)\>" blue default; \
|
|
|
|
addgrouphl hlcpp regex "\<(const|auto|namespace|static|volatile|class|struct|enum|union|public|protected|private|template|typedef|virtual)\>" green default; \
|
|
|
|
addgrouphl hlcpp regex "(?<!')\"(\\\"|[^\"])*\"" magenta default; \
|
|
|
|
addgrouphl hlcpp regex "(\`|(?<=\n))\h*#\h*[^\n]*" magenta default; \
|
|
|
|
addgrouphl hlcpp regex "(//[^\n]*\n)|(/\*.*?(\*/|\'))" cyan default; \
|
2012-01-15 18:35:25 +01:00
|
|
|
addfilter preserve_indent; \
|
2012-01-23 15:00:33 +01:00
|
|
|
addfilter cleanup_whitespaces; \
|
|
|
|
hook window InsertEnd .* exec xs\h+(?=\n)<ret>d
|
|
|
|
|