blob: 34e7176f0896c80968103cdaf3da00c1e7bbc091 [file] [log] [blame]
Chris Allegrettadeb34f22008-05-31 21:55:21 +00001## Here is an example for awk.
Benno Schulenbergfe9da942014-05-16 20:21:34 +00002
Chris Allegrettadeb34f22008-05-31 21:55:21 +00003syntax "awk" "\.awk$"
Chris Allegrettab00d0b92011-02-13 04:23:10 +00004magic "awk.*script text"
Mike Scalora6a2032f2016-05-25 22:13:50 +02005comment "#"
Benno Schulenbergfe9da942014-05-16 20:21:34 +00006
7# Records.
Chris Allegrettadeb34f22008-05-31 21:55:21 +00008icolor brightred "\$[0-9A-Z_!@#$*?-]+"
Benno Schulenbergfe9da942014-05-16 20:21:34 +00009# Awk-set variables.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000010color red "\<(ARGC|ARGIND|ARGV|BINMODE|CONVFMT|ENVIRON|ERRNO|FIELDWIDTHS)\>"
11color red "\<(FILENAME|FNR|FS|IGNORECASE|LINT|NF|NR|OFMT|OFS|ORS)\>"
12color red "\<(PROCINFO|RS|RT|RSTART|RLENGTH|SUBSEP|TEXTDOMAIN)\>"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000013# Function declarations and special patterns.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000014color brightgreen "\<(function|extension|BEGIN|END)\>"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000015# Operators.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000016color green "(\{|\}|\(|\)|\;|\]|\[|\\|<|>|!|=|&|\+|-|\*|%|/|\?:|\^|\|)"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000017# Flow control.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000018color brightyellow "\<(for|if|while|do|else|in|delete|exit)\>"
19color brightyellow "\<(break|continue|return)\>"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000020# I/O statements.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000021color brightgreen "\<(close|getline|next|nextfile|print|printf)\>"
22color brightgreen "\<(system|fflush)\>"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000023# Standard functions.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000024color magenta "\<(atan2|cos|exp|int|log|rand|sin|sqrt|srand)\>"
25color magenta "\<(asort|asorti|gensub|gsub|index|length|match)\>"
26color magenta "\<(split|sprintf|strtonum|sub|substr|tolower|toupper)\>"
27color magenta "\<(mktime|strftime|systime)\>"
28color magenta "\<(and|compl|lshift|or|rshift|xor)\>"
29color magenta "\<(bindtextdomain|dcgettext|dcngettext)\>"
30
Benno Schulenbergfe9da942014-05-16 20:21:34 +000031# Strings.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000032color brightyellow "<[^= ]*>" ""(\\.|[^"])*""
Benno Schulenbergfe9da942014-05-16 20:21:34 +000033# Comments.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000034color brightblue "(^|[[:space:]])#.*$"
35
Benno Schulenbergfe9da942014-05-16 20:21:34 +000036# Trailing whitespace.
Chris Allegrettadeb34f22008-05-31 21:55:21 +000037color ,green "[[:space:]]+$"