Not colouring triple quotes by themselves (in Python).
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5466 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
ad1f1bce7f
commit
5634d7d717
|
@ -1,3 +1,6 @@
|
||||||
|
2015-12-02 Benno Schulenberg <bensberg@justemail.net>
|
||||||
|
* doc/syntax/python.nanorc: Don't colour triple quotes by themselves.
|
||||||
|
|
||||||
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.
|
||||||
This addresses Debian bug #805288.
|
This addresses Debian bug #805288.
|
||||||
|
|
|
@ -11,8 +11,8 @@ color brightcyan "\<(and|as|assert|break|class|continue|def|del|elif|else|except
|
||||||
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.
|
# Strings.
|
||||||
color brightgreen "['][^']*[^\\][']" "[']{3}.*[^\\][']{3}"
|
color brightgreen "['][^']*[^'\\][']" "[']{3}.*[^'\\][']{3}"
|
||||||
color brightgreen "["][^"]*[^\\]["]" "["]{3}.*[^\\]["]{3}"
|
color brightgreen "["][^"]*[^"\\]["]" "["]{3}.*[^"\\]["]{3}"
|
||||||
# Comments.
|
# Comments.
|
||||||
color brightred "(^|[[:blank:]])#.*$"
|
color brightred "(^|[[:blank:]])#.*$"
|
||||||
# Multiline strings.
|
# Multiline strings.
|
||||||
|
|
Loading…
Reference in New Issue