view nanorc.d/python.nanorc @ 102:7f49998de821

Remove number literal colouring for PHP It doesn't add anything, it doesn't look great, and we've not got enough colours to make it work
author IBBoard <dev@ibboard.co.uk>
date Mon, 02 Apr 2018 20:21:37 +0100
parents 5f2c5800fa8a
children
line wrap: on
line source

## Here is an example for Python.

syntax "python" "\.py$"
header "^#!.*python[-0-9._]*"
magic "Python script"
linter pyflakes
comment "#"

# Function definitions.
icolor brightblue "(def|class) [0-9A-Z_]+"
# Keywords.
color magenta "\<(and|as|assert|async|await|break|continue)\>"
color magenta "\<(del|elif|else|except|exec|finally|for|from)\>"
color magenta "\<(global|if|import|in|is|lambda|nonlocal|not|or)\>"
color magenta "\<(pass|print|raise|return|try|while|with|yield)\>"

# Single-quoted strings.
color yellow "'([^'\]|\\.)+'|''"
color yellow ""([^"\]|\\.)+"|"""
# Comments.
color green "(^|[[:blank:]])#.*$"
# Triple-quoted strings.
color green    start="'''([^'),]|$)" end="(^|[^(\])'''"
color green start="\"\"\"([^"),]|$)" end="(^|[^(\])\"\"\""

# Special values.
color red "\<(False|None|True)\>"

# Reminders.
color brightwhite,yellow "(FIXME|TODO|XXX)"

# Trailing whitespace.
color ,green "[[:space:]]+$"