Make Python comment rule more specific

This commit is contained in:
Simon Volpert 2018-03-14 18:34:58 +02:00
parent be1c690ef1
commit b364e4bf4d
No known key found for this signature in database
GPG Key ID: C88435385910CF33
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ color yellow "['][^']*[^\\][']" "[']{3}.*[^\\][']{3}"
color yellow "["][^"]*[^\\]["]" "["]{3}.*[^\\]["]{3}"
## comments
color green "#.*$"
color green "^#.*|[[:space:]]#.*$"
## block comments
#color green start=""""([^"]|$)" end=""""" start="'''([^']|$)" end="'''"