2020-04-20 17:15:43 +00:00
|
|
|
## Syntax highlighting for Python.
|
2014-05-16 20:21:34 +00:00
|
|
|
|
2018-02-07 10:25:46 +00:00
|
|
|
syntax python "\.py$"
|
2018-08-28 17:47:40 +00:00
|
|
|
header "^#!.*python"
|
2017-11-19 10:10:53 +00:00
|
|
|
magic "Python script"
|
2016-05-25 20:13:50 +00:00
|
|
|
comment "#"
|
2014-05-12 16:01:57 +00:00
|
|
|
|
2019-11-04 18:52:35 +00:00
|
|
|
linter pyflakes
|
|
|
|
|
2014-05-12 16:01:57 +00:00
|
|
|
# Function definitions.
|
2019-08-17 15:01:19 +00:00
|
|
|
color brightblue "def [0-9A-Za-z_]+"
|
2014-05-12 16:01:57 +00:00
|
|
|
# Keywords.
|
2017-12-10 07:46:02 +00:00
|
|
|
color brightcyan "\<(and|as|assert|async|await|break|class|continue)\>"
|
2018-09-18 20:21:00 +00:00
|
|
|
color brightcyan "\<(def|del|elif|else|except|finally|for|from)\>"
|
2017-12-10 07:46:02 +00:00
|
|
|
color brightcyan "\<(global|if|import|in|is|lambda|nonlocal|not|or)\>"
|
2018-09-18 20:21:00 +00:00
|
|
|
color brightcyan "\<(pass|raise|return|try|while|with|yield)\>"
|
|
|
|
|
|
|
|
# These two are keywords in Python 2, but functions in Python 3,
|
|
|
|
# so only color them when they are followed by whitespace, assuming
|
|
|
|
# that print(x) is a function invocation and print (x) is a statement.
|
|
|
|
color brightcyan "\<(exec|print)([[:blank:]]|$)"
|
2014-05-12 18:10:08 +00:00
|
|
|
|
2018-08-16 17:55:03 +00:00
|
|
|
# Special values.
|
|
|
|
color brightmagenta "\<(False|None|True)\>"
|
|
|
|
|
2019-05-11 15:52:41 +00:00
|
|
|
# Mono-quoted strings.
|
|
|
|
color brightgreen "'([^'\]|\\.)*'|'''"
|
|
|
|
color brightgreen ""([^"\]|\\.)*"|""""
|
|
|
|
color normal "'''|""""
|
2015-03-25 13:50:12 +00:00
|
|
|
# Comments.
|
2018-11-03 20:12:44 +00:00
|
|
|
color brightred "(^|[[:blank:]])#.*"
|
2015-12-02 10:29:18 +00:00
|
|
|
# Triple-quoted strings.
|
2017-07-22 18:51:17 +00:00
|
|
|
color brightgreen start="'''([^'),]|$)" end="(^|[^(\])'''"
|
2019-05-11 15:52:41 +00:00
|
|
|
color brightgreen start=""""([^"),]|$)" end="(^|[^(\])""""
|
2014-05-12 18:10:08 +00:00
|
|
|
|
|
|
|
# Reminders.
|
2020-04-21 10:47:08 +00:00
|
|
|
color brightwhite,yellow "\<(FIXME|TODO|XXX)\>"
|
2014-03-24 12:45:20 +00:00
|
|
|
|
2014-05-12 16:01:57 +00:00
|
|
|
# Trailing whitespace.
|
2014-03-24 12:45:20 +00:00
|
|
|
color ,green "[[:space:]]+$"
|