blob: f6a541525845d159a746f6c93953bf9cfc2ed962 [file] [log] [blame]
Benno Schulenberga2fcc062014-03-24 12:39:58 +00001## Here is an example for Javascript.
Benno Schulenbergfe9da942014-05-16 20:21:34 +00002
Benno Schulenberga2fcc062014-03-24 12:39:58 +00003syntax "javascript" "\.js$"
Mike Scalora6a2032f2016-05-25 22:13:50 +02004comment "//"
Benno Schulenbergfe9da942014-05-16 20:21:34 +00005
Benno Schulenberga2fcc062014-03-24 12:39:58 +00006color brightred "\<[A-Z_][0-9A-Z_]+\>"
7color green "\<(const|function|let|this|typeof|var|void)\>"
8color brightyellow "\<(for|if|while|with|do|else|case|default|switch)\>"
9color brightyellow "\<(export|try|throw|catch|new|delete)\>"
10color magenta "\<(continue|break|return|yield)\>"
11color brightmagenta "'([^'\]|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'"
12
Benno Schulenbergfe9da942014-05-16 20:21:34 +000013# Strings.
Benno Schulenberga2fcc062014-03-24 12:39:58 +000014color brightyellow "<[^= ]*>" ""(\\.|[^"])*"" "'(\\.|[^'])*'"
Benno Schulenbergfe9da942014-05-16 20:21:34 +000015# Comments.
Benno Schulenberga2fcc062014-03-24 12:39:58 +000016color brightblue "//.*"
17color brightblue start="/\*" end="\*/"
18
Benno Schulenbergfe9da942014-05-16 20:21:34 +000019# Trailing whitespace.
Benno Schulenberga2fcc062014-03-24 12:39:58 +000020color ,green "[[:space:]]+$"