nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 1ea76eb51bcc36cf5d044a1d1b49104ca7600f2a
parent 5634d7d7170429d0974d5a2557dd635fe3a2d354
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Wed,  2 Dec 2015 10:29:18 +0000

Treating backslashed quotes properly, and
not colouring triple-quoted strings twice.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5467 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 2++
Mdoc/syntax/python.nanorc | 12++++++------
2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,5 +1,7 @@ 2015-12-02 Benno Schulenberg <bensberg@justemail.net> * doc/syntax/python.nanorc: Don't colour triple quotes by themselves. + * doc/syntax/python.nanorc: Treat backslashed quotes properly, and + don't colour triple-quoted strings in two manners. 2015-12-02 Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com> * doc/syntax/nftables.nanorc: New file; syntax colouring for nftables. diff --git a/doc/syntax/python.nanorc b/doc/syntax/python.nanorc @@ -10,14 +10,14 @@ icolor brightblue "def [0-9A-Z_]+" color brightcyan "\<(and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from)\>" color brightcyan "\<(global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\>" -# Strings. -color brightgreen "['][^']*[^'\\][']" "[']{3}.*[^'\\][']{3}" -color brightgreen "["][^"]*[^"\\]["]" "["]{3}.*[^"\\]["]{3}" +# Single-quoted strings. +color brightgreen "'([^'\]|\\.)+'" +color brightgreen ""([^"\]|\\.)+"" # Comments. color brightred "(^|[[:blank:]])#.*$" -# Multiline strings. -color brightgreen start="\"\"\"[^"),]" end="(^|[^(])\"\"\"" -color brightgreen start="'''[^'),]" end="(^|[^(])'''" +# Triple-quoted strings. +color brightgreen start="'''[^'),]" end="(^|[^(\])'''" +color brightgreen start="\"\"\"[^"),]" end="(^|[^(\])\"\"\"" # Reminders. color ,yellow "(FIXME|TODO|XXX)"