2006-06-01 21:23:28 +04:00
## Here is an example for Python.
2014-05-17 00:21:34 +04:00
2006-06-01 21:23:28 +04:00
syntax "python" "\.py$"
2008-09-30 18:30:33 +04:00
header "^#!.*/python[-0-9._]*"
2014-05-12 20:01:57 +04:00
# Function definitions.
2006-06-01 21:23:28 +04:00
icolor brightblue "def [0-9A-Z_]+"
2014-05-12 20:01:57 +04:00
# Keywords.
2008-10-01 04:55:13 +04:00
color brightcyan "\<(and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\>"
2014-05-12 22:10:08 +04:00
2014-05-12 20:01:57 +04:00
# Strings.
2006-12-24 21:17:28 +03:00
color brightgreen "['][^']*[^\\][']" "[']{3}.*[^\\][']{3}"
color brightgreen "["][^"]*[^\\]["]" "["]{3}.*[^\\]["]{3}"
2014-05-12 20:01:57 +04:00
# Multiline strings.
color brightgreen start="\"\"\"([^"),]|$)" end="(^|[^(])\"\"\""
color brightgreen start="'''([^'),]|$)" end="(^|[^(])'''"
2014-05-12 22:10:08 +04:00
2014-05-12 20:01:57 +04:00
# Comments.
color brightred "(^|[[:blank:]])#.*$"
2014-05-12 22:10:08 +04:00
# Reminders.
color ,yellow "(FIXME|TODO|XXX)"
2014-03-24 16:45:20 +04:00
2014-05-12 20:01:57 +04:00
# Trailing whitespace.
2014-03-24 16:45:20 +04:00
color ,green "[[:space:]]+$"