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
master
Benno Schulenberg 2015-12-02 10:29:18 +00:00
parent 5634d7d717
commit 1ea76eb51b
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,7 @@
2015-12-02 Benno Schulenberg <bensberg@justemail.net> 2015-12-02 Benno Schulenberg <bensberg@justemail.net>
* doc/syntax/python.nanorc: Don't colour triple quotes by themselves. * 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> 2015-12-02 Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
* doc/syntax/nftables.nanorc: New file; syntax colouring for nftables. * doc/syntax/nftables.nanorc: New file; syntax colouring for nftables.

View File

@ -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 "\<(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)\>" color brightcyan "\<(global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\>"
# Strings. # Single-quoted strings.
color brightgreen "['][^']*[^'\\][']" "[']{3}.*[^'\\][']{3}" color brightgreen "'([^'\]|\\.)+'"
color brightgreen "["][^"]*[^"\\]["]" "["]{3}.*[^"\\]["]{3}" color brightgreen ""([^"\]|\\.)+""
# Comments. # Comments.
color brightred "(^|[[:blank:]])#.*$" color brightred "(^|[[:blank:]])#.*$"
# Multiline strings. # Triple-quoted strings.
color brightgreen start="\"\"\"[^"),]" end="(^|[^(])\"\"\"" color brightgreen start="'''[^'),]" end="(^|[^(\])'''"
color brightgreen start="'''[^'),]" end="(^|[^(])'''" color brightgreen start="\"\"\"[^"),]" end="(^|[^(\])\"\"\""
# Reminders. # Reminders.
color ,yellow "(FIXME|TODO|XXX)" color ,yellow "(FIXME|TODO|XXX)"