Skip to content

Commit 3f8e284

Browse files
committed
Merge pull request #69 from MattDMo/master
make keys case-insensitive (keyword.other.name)
2 parents 37fcbf3 + 07bccdc commit 3f8e284

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Syntax Definitions/Sublime Settings.JSON-tmLanguage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"begin": "/\\*",
1010
"end": "\\*/"
1111
},
12-
{ "match": "\"([a-z0-9_.*-]+)\"\\s*?:",
12+
{ "match": "(?i)\"([a-z0-9_.*-]+)\"\\s*?:",
1313
"captures": {
1414
"1": { "name": "keyword.other.name.sublime-settings" }
1515
}

Syntax Definitions/Sublime Settings.tmLanguage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</dict>
3535
</dict>
3636
<key>match</key>
37-
<string>"([a-z0-9_.*-]+)"\s*?:</string>
37+
<string>"(?i)([a-z0-9_.*-]+)"\s*?:</string>
3838
</dict>
3939
<dict>
4040
<key>include</key>

0 commit comments

Comments
 (0)