Skip to content

Commit 88b3715

Browse files
committed
updates tmLanguage file from source
I used http://json2plist.sinaapp.com/ for conversion
1 parent 230de71 commit 88b3715

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

syntaxes/yaml.tmLanguage.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
55
"Once accepted there, we are happy to receive an update request."
66
],
7-
"version": "https://github.com/textmate/yaml.tmbundle/commit/efc96efafe5e48480cf55a2ed124b388cbea4440",
7+
"version": "https://github.com/textmate/yaml.tmbundle/commit/e54ceae3b719506dba7e481a77cea4a8b576ae46",
88
"name": "YAML",
99
"scopeName": "source.yaml",
1010
"patterns": [
@@ -121,16 +121,16 @@
121121
"begin": "(?:(\\|)|(>))([1-9])?([-+])?(.*\\n?)",
122122
"beginCaptures": {
123123
"1": {
124-
"name": "punctuation.definition.block.scalar.literal.yaml"
124+
"name": "keyword.control.flow.block-scalar.literal.yaml"
125125
},
126126
"2": {
127-
"name": "punctuation.definition.block.scalar.folded.yaml"
127+
"name": "keyword.control.flow.block-scalar.folded.yaml"
128128
},
129129
"3": {
130130
"name": "constant.numeric.indentation-indicator.yaml"
131131
},
132132
"4": {
133-
"name": "support.other.chomping-indicator.yaml"
133+
"name": "storage.modifier.chomping-indicator.yaml"
134134
},
135135
"5": {
136136
"patterns": [
@@ -154,7 +154,7 @@
154154
]
155155
},
156156
"block-sequence": {
157-
"match": "(-)( |\\t|$)",
157+
"match": "(-)(?!\\S)",
158158
"name": "punctuation.definition.block.sequence.item.yaml"
159159
},
160160
"comment": {
@@ -211,7 +211,7 @@
211211
"name": "support.type.tag-prefix.yaml"
212212
}
213213
},
214-
"match": "(?x)\n \\G\n (TAG)\n (?:[ \\t]+\n ((?:!(?:[0-9A-Za-z\\-]*!)?))\n (?:[ \\t]+ (\n ! (?x: %\\p{XDigit}{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )*\n | (?![,!\\[\\]{}]) (?x: %\\p{XDigit}{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )+\n )\n )?\n )?\n "
214+
"match": "(?x)\n \\G\n (TAG)\n (?:[ \\t]+\n ((?:!(?:[0-9A-Za-z\\-]*!)?))\n (?:[ \\t]+ (\n ! (?x: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;\/?:@&=+$,_.!~*'()\\[\\]] )*\n | (?![,!\\[\\]{}]) (?x: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;\/?:@&=+$,_.!~*'()\\[\\]] )+\n )\n )?\n )?\n "
215215
},
216216
{
217217
"captures": {
@@ -248,7 +248,7 @@
248248
"name": "invalid.illegal.character.anchor.yaml"
249249
}
250250
},
251-
"match": "((\\*))([^\\s\\[\\]/{/},]+)([^\\s\\]},]\\S*)?"
251+
"match": "((\\*))([^\\s\\[\\]\/{\/},]+)([^\\s\\]},]\\S*)?"
252252
},
253253
"flow-collection": {
254254
"patterns": [
@@ -410,7 +410,7 @@
410410
"name": "string.quoted.double.yaml",
411411
"patterns": [
412412
{
413-
"match": "\\\\([0abtnvfre \"/\\\\N_Lp]|x\\d\\d|u\\d{4}|U\\d{8})",
413+
"match": "\\\\([0abtnvfre \"\/\\\\N_Lp]|x\\d\\d|u\\d{4}|U\\d{8})",
414414
"name": "constant.character.escape.yaml"
415415
},
416416
{
@@ -595,10 +595,10 @@
595595
"name": "invalid.illegal.character.anchor.yaml"
596596
}
597597
},
598-
"match": "\\G((&))([^\\s\\[\\]/{/},]+)(\\S+)?"
598+
"match": "\\G((&))([^\\s\\[\\]\/{\/},]+)(\\S+)?"
599599
},
600600
{
601-
"match": "(?x)\n \\G\n (?:\n ! < (?: %\\p{XDigit}{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )+ >\n | (?:!(?:[0-9A-Za-z\\-]*!)?) (?: %\\p{XDigit}{2} | [0-9A-Za-z\\-#;/?:@&=+$_.~*'()] )+\n | !\n )\n (?=\\ |\\t|$)\n ",
601+
"match": "(?x)\n \\G\n (?:\n ! < (?: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;\/?:@&=+$,_.!~*'()\\[\\]] )+ >\n | (?:!(?:[0-9A-Za-z\\-]*!)?) (?: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;\/?:@&=+$_.~*'()] )+\n | !\n )\n (?=\\ |\\t|$)\n ",
602602
"name": "storage.type.tag-handle.yaml"
603603
},
604604
{

0 commit comments

Comments
 (0)