-
Notifications
You must be signed in to change notification settings - Fork 8
Closed
Labels
Description
Sublime Text 2 Version 2.0.2, Build 2221 (Windows 7)
Python Improved v1.2.0
Python string syntax highlighting breaks when the word CREATE is used in combination with quotation marks.
print "CREATE '%s'" % ('abc') # Missing highlighting
print 'CREATE "%s"' % ('def') # Missing highlighting
print "GRANT '%s'" % ('ghi') # Highlighting ok
print "CREAT '%s'" % ('jkl') # Highlighting ok
print "CREATE %s" % ('mno') # Highlighting ok
print "create '%s'" % ('pqr') # Highlighting okExpected behavior would be for %s to display in purple in all cases.
This issue exists with standard Python syntax language file in Sublime Text as well.
