]> git.wh0rd.org Git - nano.git/commitdiff
add sample Python regexes to nanorc.sample
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 31 Mar 2006 19:39:55 +0000 (19:39 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 31 Mar 2006 19:39:55 +0000 (19:39 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3345 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/nanorc.sample

index 9677f53dfa4cbcf11b7175bcb5c268c2b5201111..2a419eb6794bb13672c6a27e5aeaaed67ae2566c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,9 @@ CVS code -
          be included per line, and change the comment for the
          "whitespace" option so that the hexadecimal character values
          are six digits long. (DLR)
+       - Add sample regexes for Python. (singular on the Gentoo forums,
+         http://forums.gentoo.org/viewtopic.php?t=86562; minor tweaks
+         by DLR, suggested by John M. Gabriele)
 
 GNU nano 1.3.11 - 2006.03.30
 - General:
index 6788829aac3a2501c06724692ae806c4125abae7..7c40f8cf9a2c5587c015f9bc5c78c92fc238c509 100644 (file)
 # color green "#.*"
 # color yellow start="<< 'STOP'" end="STOP"
 
+## Here is an example for Python
+##
+# syntax "python" "\.py$"
+# icolor brightblue "def [A-Z_0-9]+"
+# color brightcyan "\<(and|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|map|not|or|pass|print|raise|return|try|while)\>"
+# color brightgreen "(["']).*[^\\]\1" "(["']){3}.*[^\\]\1"
+# color brightgreen start=""""[^"]" end=""""" start="'''[^']" end="'''"
+# color brightred "#.*$"
+
 ## Here is an example for Java source
 ##
 # syntax "Java source" "\.java$"