mirror of https://github.com/kivy/kivy.git
fix syntax highlighting issue where strings containing a colon would cause error
This commit is contained in:
parent
0fa2fd6508
commit
65fdc5863a
|
@ -13,7 +13,7 @@
|
|||
{ "match": ".*?:$",
|
||||
"name": "support.function.kivy" },
|
||||
{ "name": "entity.name.section.kivy",
|
||||
"match": "(.*?):" },
|
||||
"match": "(.*?):$" },
|
||||
{ "include": "source.python" }
|
||||
],
|
||||
"uuid": "49cecc44-5094-48ec-a876-91f597e8bf81"
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>match</key>
|
||||
<string>(.*?):</string>
|
||||
<string>(.*?):$</string>
|
||||
<key>name</key>
|
||||
<string>entity.name.section.kivy</string>
|
||||
</dict>
|
||||
|
|
Loading…
Reference in New Issue