]> git.wh0rd.org Git - nano.git/commitdiff
Slightly improving the regexes for multiline strings in Python.
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 26 Feb 2014 12:35:10 +0000 (12:35 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Wed, 26 Feb 2014 12:35:10 +0000 (12:35 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4612 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/syntax/python.nanorc

index 8c32144370ab031a9d90b0d1988e951328e99016..529c56691495f6c53bd9f536a488be19fce1fa23 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-02-26  Konstantin Abakumov  <abakumov@Savannah>  (tiny change)
+       * doc/syntax/python.nanorc - Slightly improve the regexes for
+       multiline strings in Python, reducing spillage.
+
 2014-02-26  Benno Schulenberg  <bensberg@justemail.net>
        * src/move.c (do_down), src/winio.c (edit_scroll) - Scroll an
        extra amount when softwrap is on and the current line would
index 42802749998980b49c74a457f6ca71d21c312b73..c24877bd66487e6c499a0b5d099dd67a6505f13f 100644 (file)
@@ -6,5 +6,6 @@ icolor brightblue "def [0-9A-Z_]+"
 color brightcyan "\<(and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield)\>"
 color brightgreen "['][^']*[^\\][']" "[']{3}.*[^\\][']{3}"
 color brightgreen "["][^"]*[^\\]["]" "["]{3}.*[^\\]["]{3}"
-color brightgreen start=""""[^"]" end=""""" start="'''[^']" end="'''"
+color brightgreen start="\"\"\"[^"]" end="\"\"\""
+color brightgreen start="\'\'\'[^']" end="\'\'\'"
 color brightred "#.*$"