blob: 0b803c9b9a31563dc18ae4a6e6e0e5c79abe7a14 [file] [log] [blame]
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00001## Here is an example for PHP.
Benno Schulenbergfe9da942014-05-16 20:21:34 +00002
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00003syntax "php" "\.php[2345s~]?$"
Chris Allegrettab00d0b92011-02-13 04:23:10 +00004magic "PHP script text"
Mike Scalora6a2032f2016-05-25 22:13:50 +02005comment "//"
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00006
Benno Schulenbergfe9da942014-05-16 20:21:34 +00007# PHP markings.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00008color brightgreen "(<\?(php)?|\?>)"
9
Benno Schulenbergfe9da942014-05-16 20:21:34 +000010# Functions.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000011color white "\<[a-z_]*\("
12
Benno Schulenbergfe9da942014-05-16 20:21:34 +000013# Types.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000014color green "\<(var|float|global|double|bool|char|int|enum|const)\>"
15
Benno Schulenbergfe9da942014-05-16 20:21:34 +000016# Structure.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000017color brightyellow "\<(class|new|private|public|function|for|foreach|if|while|do|else|elseif|case|default|switch)\>"
18
Benno Schulenbergfe9da942014-05-16 20:21:34 +000019# Control flow.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000020color magenta "\<(goto|continue|break|return)\>"
21
Benno Schulenbergfe9da942014-05-16 20:21:34 +000022# Strings.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000023color brightyellow "<[^= ]*>" ""(\.|[^"])*""
24
Benno Schulenbergfe9da942014-05-16 20:21:34 +000025# Comments.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000026color brightblue "//.*"
27color brightblue start="/\*" end="\*/"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000028##color blue start="<" end=">"
Benno Schulenberg2da9cbf2015-05-03 15:47:05 +000029##color red "&[^;[:space:]]*;"
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000030
Benno Schulenbergfe9da942014-05-16 20:21:34 +000031# Trailing whitespace.
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000032color ,green "[[:space:]]+$"