github-linguist 4.8.12 → 4.8.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ae1fd5784e1410d2b98553ba17a00a7ff5b079a
4
- data.tar.gz: afa71ce67f475603898dd9da6f5e6afe0d866e7c
3
+ metadata.gz: 46c7351e7ebad2d30eedeed7981f723ecc0df1b6
4
+ data.tar.gz: 54ede4cdeb8dc158f7a8fd84cae08d4355e52542
5
5
  SHA512:
6
- metadata.gz: 321534174fca0b5437f9494db041eeecc58d10c337d2e74f78fe9d5df90ab28e60da5ecf2ebfc2fd20163e5709e1ddc81a6e238b0f52e13ff5533c68e2069f9b
7
- data.tar.gz: c377ba147c1efc5bf9486ebbecf65b0aee678d65f3a5870240af74d8536d15fe163e4bf0d5ad81c4f76ad5b33ca2b69c6e0000fcae1e4d410297638158d7033f
6
+ metadata.gz: 6ffaaacc36d9641f040034fe838aff903e28539c098afc6d3de31829e925c4388fa728cab76df0cd05a14880d1831d5b2ae51a8aaa980b4bee72444a9e7cde62
7
+ data.tar.gz: f5a2ed2442c4264e292515b2308511ff2834eb4f33ffb21bca04bee729530640690c5952f930b66f96e4c30ba17f85a8078d9407c34a975a8b83079414b3d24d
@@ -1,224 +1,1141 @@
1
1
  {
2
+ "name": "VimL",
3
+ "scopeName": "source.viml",
2
4
  "fileTypes": [
3
- "vim"
5
+ "vim",
6
+ "vimrc",
7
+ "gvimrc",
8
+ "nvimrc",
9
+ "_vimrc"
4
10
  ],
5
- "foldingStartMarker": "^(if|while|for|fu|function|try|augroup|aug)",
6
- "foldingStopMarker": "(endif|endwhile|endfor|endf|endfunction|endtry|augroup\\.END|aug\\.END)$",
7
- "name": "VimL",
11
+ "firstLineMatch": "(?x)\n\n# Hashbang\n^\\#!.*(?:\\s|\\/|(?<=!)\\b)\n\t(?:vim|nvim)\n(?:$|\\s)\n\n|\n\n# Modeline\n(?i:\n\t# Vim/Vi modeline, accounting for all possible variations\n\t(?:(?:\\s|^)vi(?:m[<=>]?\\d+|m)?|\\sex)(?=:(?=\\s*set?\\s[^\\n:]+:)|:(?!\\s* set?\\s))\n\t(?:(?:\\s|\\s*:\\s*)\\w*(?:\\s*=(?:[^\\n\\\\\\s]|\\\\.)*)?)*[\\s:]\n\t(?:filetype|ft|syntax)\\s*=\n\t\tvim\n\t(?=\\s|:|$)\n\t\n\t|\n\t\n\t# Emacs modeline, assuming a major mode for VimScript even exists\n\t-\\*-(?:(?:(?!mode\\s*:)[^:;]+:[^:;]+;)*\\s*mode\\s*:)?\\s*\n\t\t(Vim|VimL|VimScript)\n\t\\s*(?:;[^:;]+:[^:;]+?)*;?\\s*-\\*-\n)",
12
+ "foldingStartMarker": "^(?:if|while|for|fu|function|augroup|aug)",
13
+ "foldingStopMarker": "(?:endif|endwhile|endfor|endf|endfunction|augroup\\.END|aug\\.END)$",
8
14
  "patterns": [
9
15
  {
10
- "include": "#comment"
11
- },
12
- {
13
- "include": "#string_quoted_double"
14
- },
15
- {
16
- "include": "#string_quoted_single"
17
- },
18
- {
19
- "include": "#string_regex"
20
- },
21
- {
22
- "include": "#inline_comment"
23
- },
24
- {
25
- "include": "#number_int"
26
- },
27
- {
28
- "include": "#number_hex"
29
- },
30
- {
31
- "include": "#keyword"
32
- },
33
- {
34
- "include": "#support_function"
35
- },
36
- {
37
- "include": "#support_variable"
38
- },
39
- {
40
- "include": "#support_type"
41
- },
42
- {
43
- "include": "#function_params"
44
- },
45
- {
46
- "include": "#function_definition"
47
- },
48
- {
49
- "include": "#function_call"
50
- },
51
- {
52
- "include": "#function"
53
- },
54
- {
55
- "include": "#variable"
56
- },
57
- {
58
- "include": "#expr"
16
+ "include": "#main"
59
17
  }
60
18
  ],
61
19
  "repository": {
62
- "comment": {
20
+ "main": {
63
21
  "patterns": [
64
22
  {
23
+ "include": "#vimTodo"
24
+ },
25
+ {
26
+ "include": "#folds"
27
+ },
28
+ {
29
+ "include": "#comments"
30
+ },
31
+ {
32
+ "include": "#modelines"
33
+ },
34
+ {
35
+ "include": "#pathname"
36
+ },
37
+ {
38
+ "include": "#strings"
39
+ },
40
+ {
41
+ "include": "#hashbang"
42
+ },
43
+ {
44
+ "include": "#numbers"
45
+ },
46
+ {
47
+ "include": "#syntax"
48
+ },
49
+ {
50
+ "include": "#highlightLink"
51
+ },
52
+ {
53
+ "include": "#funcDef"
54
+ },
55
+ {
56
+ "include": "#augGroup"
57
+ },
58
+ {
59
+ "include": "#parameter"
60
+ },
61
+ {
62
+ "include": "#expr"
63
+ },
64
+ {
65
+ "include": "#keyword"
66
+ },
67
+ {
68
+ "include": "#register"
69
+ },
70
+ {
71
+ "include": "#variable"
72
+ },
73
+ {
74
+ "include": "#supportType"
75
+ },
76
+ {
77
+ "include": "#supportVariable"
78
+ },
79
+ {
80
+ "include": "#extraVimFunc"
81
+ },
82
+ {
83
+ "include": "#keywordLists"
84
+ }
85
+ ]
86
+ },
87
+ "strings": {
88
+ "patterns": [
89
+ {
90
+ "name": "string.quoted.double.viml",
91
+ "match": "(\")(?:\\\\\\\\|\\\\\"|[^\\n\"])*(\")",
65
92
  "captures": {
66
93
  "1": {
67
- "name": "punctuation.definition.comment.vim"
94
+ "name": "punctuation.definition.string.begin.viml"
95
+ },
96
+ "2": {
97
+ "name": "punctuation.definition.string.end.viml"
68
98
  }
69
- },
70
- "match": "^\\s*\".*$",
71
- "name": "comment.line.quotes.viml"
99
+ }
100
+ },
101
+ {
102
+ "name": "string.quoted.single.viml",
103
+ "match": "(')(?:''|[^\\n'])*(')",
104
+ "captures": {
105
+ "1": {
106
+ "name": "punctuation.definition.string.begin.viml"
107
+ },
108
+ "2": {
109
+ "name": "punctuation.definition.string.end.viml"
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "name": "string.regexp.interpolated.viml",
115
+ "match": "(/)(?:\\\\\\\\|\\\\/|[^\\n/])*(/)",
116
+ "captures": {
117
+ "1": {
118
+ "name": "punctuation.section.regexp.begin.viml"
119
+ },
120
+ "2": {
121
+ "name": "punctuation.section.regexp.end.viml"
122
+ }
123
+ }
72
124
  }
73
125
  ]
74
126
  },
75
- "expr": {
127
+ "pathname": {
128
+ "name": "constant.pathname.viml",
129
+ "begin": "~/",
130
+ "end": "(?=\\s)"
131
+ },
132
+ "comments": {
76
133
  "patterns": [
77
134
  {
78
- "match": "(\\|\\||&&|==(\\?|#)?|(!|>|<)=(#|\\?)?|(=|!)~(#|\\?)?|(>|<)(#|\\?)is|isnot|\\.|\\*|\\\\|%)",
79
- "name": "storage.function.viml"
135
+ "name": "comment.line.quotes.viml",
136
+ "begin": "^\\s*(\")(?=(\\s*[A-Z]\\w+)+:)",
137
+ "end": "((:))(.*)$",
138
+ "contentName": "support.constant.field.viml",
139
+ "beginCaptures": {
140
+ "1": {
141
+ "name": "punctuation.definition.comment.viml"
142
+ }
143
+ },
144
+ "endCaptures": {
145
+ "1": {
146
+ "name": "support.constant.field.viml"
147
+ },
148
+ "2": {
149
+ "name": "punctuation.separator.key-value.colon.viml"
150
+ },
151
+ "3": {
152
+ "patterns": [
153
+ {
154
+ "include": "#commentInnards"
155
+ }
156
+ ]
157
+ }
158
+ }
159
+ },
160
+ {
161
+ "name": "comment.line.quotes.viml",
162
+ "begin": "^\\s*(\")",
163
+ "end": "$",
164
+ "beginCaptures": {
165
+ "1": {
166
+ "name": "punctuation.definition.comment.viml"
167
+ }
168
+ },
169
+ "patterns": [
170
+ {
171
+ "include": "#commentInnards"
172
+ }
173
+ ]
174
+ },
175
+ {
176
+ "name": "comment.inline.quotes.viml",
177
+ "patterns": [
178
+ {
179
+ "include": "#commentInnards"
180
+ }
181
+ ],
182
+ "begin": "(?<!^)\\s*(\")(?=[^\\n\"]*$)",
183
+ "end": "$",
184
+ "beginCaptures": {
185
+ "1": {
186
+ "name": "punctuation.definition.comment.viml"
187
+ }
188
+ }
80
189
  }
81
190
  ]
82
191
  },
83
- "function": {
192
+ "commentInnards": {
84
193
  "patterns": [
85
194
  {
86
- "match": "\\b(fu(n|nction)?|end(f|fu|fun|function)?)\\b",
87
- "name": "storage.function.viml"
195
+ "include": "#modelines"
196
+ },
197
+ {
198
+ "include": "#folds"
199
+ },
200
+ {
201
+ "include": "#todo"
88
202
  }
89
203
  ]
90
204
  },
91
- "function_call": {
205
+ "modelines": {
92
206
  "patterns": [
93
207
  {
94
- "match": "(([sgbwtl]|)?:?[0-9a-zA-Z_#]+)(?=\\()",
95
- "name": "support.function.any-method"
208
+ "name": "string.other.modeline.viml",
209
+ "patterns": [
210
+ {
211
+ "include": "$self"
212
+ }
213
+ ],
214
+ "begin": "(?:(?:\\s|^)vi(?:m[<=>]?\\d+|m)?|[\\t\\x20]ex):\\s*(?=set?\\s)",
215
+ "end": ":|$"
216
+ },
217
+ {
218
+ "name": "string.other.modeline.viml",
219
+ "patterns": [
220
+ {
221
+ "include": "$self"
222
+ }
223
+ ],
224
+ "begin": "(?:(?:\\s|^)vi(?:m[<=>]?\\d+|m)?|[\\t\\x20]ex):",
225
+ "end": "$"
96
226
  }
97
227
  ]
98
228
  },
99
- "function_definition": {
100
- "begin": "^\\s*(function)\\s*!?\\s+(?=(s:)?[0-9a-zA-Z_#]+\\s*\\()",
229
+ "folds": {
230
+ "name": "entity.name.fold.heading.viml",
231
+ "match": "(?<=\").*?{{{\\d*|(?<=\")\\s*}}}"
232
+ },
233
+ "hashbang": {
234
+ "name": "comment.line.shebang.viml",
235
+ "begin": "\\A#!",
236
+ "end": "$",
101
237
  "beginCaptures": {
102
- "1": {
103
- "name": "storage.function.viml"
104
- }
105
- },
106
- "end": "(\\()",
107
- "endCaptures": {
108
- "1": {
109
- "name": "punctuation.definition.parameters.begin.viml"
238
+ "0": {
239
+ "name": "punctuation.definition.comment.shebang.viml"
110
240
  }
111
- },
112
- "name": "meta.function.viml",
241
+ }
242
+ },
243
+ "numbers": {
113
244
  "patterns": [
114
245
  {
115
- "match": "(s:)?[0-9a-zA-Z_#]+",
116
- "name": "entity.name.function.viml"
246
+ "name": "constant.numeric.hex.viml",
247
+ "match": "(?:#|0[xX])[0-9A-Fa-f]+"
248
+ },
249
+ {
250
+ "name": "constant.numeric.float.exponential.viml",
251
+ "match": "(?<!\\w)-?\\d+\\.\\d+[eE][-+]?\\d+"
252
+ },
253
+ {
254
+ "name": "constant.numeric.float.viml",
255
+ "match": "(?<!\\w)-?\\d+\\.\\d+"
256
+ },
257
+ {
258
+ "name": "constant.numeric.integer.viml",
259
+ "match": "(?<!\\w)-?\\d+"
117
260
  }
118
261
  ]
119
262
  },
120
- "function_params": {
263
+ "funcDef": {
121
264
  "patterns": [
122
265
  {
123
- "match": "-\\w+=",
124
- "name": "support.type.viml"
266
+ "name": "storage.function.viml",
267
+ "match": "\\b(fu(n|nction)?|end(f|fu|fun|function)?)\\b"
268
+ },
269
+ {
270
+ "name": "entity.name.function.viml",
271
+ "match": "(?:([sSgGbBwWtTlL]?(:))?[\\w#]+)(?=\\()",
272
+ "captures": {
273
+ "1": {
274
+ "name": "storage.modifier.scope.viml"
275
+ },
276
+ "2": {
277
+ "name": "punctuation.definition.scope.key-value.viml"
278
+ }
279
+ }
280
+ },
281
+ {
282
+ "name": "storage.modifier.$1.function.viml",
283
+ "match": "(?<=\\)|\\s)(abort|dict)(?=\\s|$)"
125
284
  }
126
285
  ]
127
286
  },
128
- "inline_comment": {
287
+ "augGroup": {
129
288
  "patterns": [
130
289
  {
131
- "captures": {
290
+ "name": "meta.define-$1.viml",
291
+ "begin": "\\b(aug|augroup)\\b\\s*([\\w#]+)",
292
+ "end": "\\b(\\1)\\s+(END)\\b",
293
+ "patterns": [
294
+ {
295
+ "include": "$self"
296
+ }
297
+ ],
298
+ "beginCaptures": {
132
299
  "1": {
133
- "name": "punctuation.definition.comment.vim"
300
+ "name": "storage.function.viml"
301
+ },
302
+ "2": {
303
+ "name": "entity.name.function.viml"
134
304
  }
135
305
  },
136
- "match": "(?!\\$)(\")(?!\\{).*$\\n?",
137
- "name": "comment.line.quotes.viml"
306
+ "endCaptures": {
307
+ "1": {
308
+ "name": "storage.function.viml"
309
+ },
310
+ "2": {
311
+ "name": "keyword.control.end"
312
+ }
313
+ }
138
314
  }
139
315
  ]
140
316
  },
141
- "keyword": {
142
- "patterns": [
143
- {
144
- "match": "\\b(if|while|for|try|return|throw|end(if|for|while|try)?|au(g|group)|else(if|)?|do|in|catch|finally|:)\\b",
145
- "name": "keyword.control.viml"
317
+ "parameter": {
318
+ "name": "meta.parameter.viml",
319
+ "match": "(-)(\\w+)(=)",
320
+ "captures": {
321
+ "1": {
322
+ "name": "punctuation.definition.parameter.viml"
323
+ },
324
+ "2": {
325
+ "name": "entity.name.parameter.viml"
326
+ },
327
+ "3": {
328
+ "name": "punctuation.assignment.parameter.viml"
146
329
  }
147
- ]
330
+ }
148
331
  },
149
- "number_hex": {
332
+ "expr": {
150
333
  "patterns": [
151
334
  {
152
- "match": "#[0-9a-f]{6}",
153
- "name": "constant.numeric.hex"
335
+ "name": "keyword.operator.logical.viml",
336
+ "match": "[&|=]{2}[?#]?|[!><]=[#?]?|[=!]~(?!\\/)[#?]?|[><][#?*]|\\b(?:isnot|is)\\b|\\\\|[-+%*]"
337
+ },
338
+ {
339
+ "match": "\\s[><]\\s",
340
+ "name": "keyword.operator.logical.viml"
341
+ },
342
+ {
343
+ "match": "(?<=\\S)!",
344
+ "name": "storage.modifier.force.viml"
345
+ },
346
+ {
347
+ "match": "!(?=\\S)",
348
+ "name": "keyword.operator.logical.not.viml"
349
+ },
350
+ {
351
+ "match": "{",
352
+ "name": "punctuation.expression.bracket.curly.begin.viml"
353
+ },
354
+ {
355
+ "match": "}",
356
+ "name": "punctuation.expression.bracket.curly.end.viml"
357
+ },
358
+ {
359
+ "match": "\\[",
360
+ "name": "punctuation.expression.bracket.square.begin.viml"
361
+ },
362
+ {
363
+ "match": "\\]",
364
+ "name": "punctuation.expression.bracket.square.end.viml"
365
+ },
366
+ {
367
+ "match": "\\(",
368
+ "name": "punctuation.expression.bracket.round.begin.viml"
369
+ },
370
+ {
371
+ "match": "\\)",
372
+ "name": "punctuation.expression.bracket.round.end.viml"
373
+ },
374
+ {
375
+ "match": "\\|",
376
+ "name": "punctuation.separator.statement.viml"
377
+ },
378
+ {
379
+ "match": ",",
380
+ "name": "punctuation.separator.comma.viml"
381
+ },
382
+ {
383
+ "match": ":",
384
+ "name": "punctuation.separator.colon.viml"
385
+ },
386
+ {
387
+ "match": "[-+.]?=",
388
+ "name": "keyword.operator.assignment.viml"
389
+ },
390
+ {
391
+ "match": "\\.{3}",
392
+ "name": "keyword.operator.rest.viml"
393
+ },
394
+ {
395
+ "match": "\\.",
396
+ "name": "punctuation.delimiter.property.dot.viml"
397
+ },
398
+ {
399
+ "match": "&(?=\\w+)",
400
+ "name": "punctuation.definition.option.viml"
154
401
  }
155
402
  ]
156
403
  },
157
- "number_int": {
404
+ "keyword": {
158
405
  "patterns": [
159
406
  {
160
- "match": "-?\\d+",
161
- "name": "constant.numeric.integer"
407
+ "name": "keyword.control.$1.viml",
408
+ "match": "\\b(if|while|for|return|try|catch|finally|end(if|for|while|try)?|else(if)?|do|in|:)\\b"
409
+ },
410
+ {
411
+ "name": "keyword.operator.$1.viml",
412
+ "match": "\\b(unlet)\\b"
413
+ },
414
+ {
415
+ "name": "storage.type.let.viml",
416
+ "match": "\\blet\\b"
162
417
  }
163
418
  ]
164
419
  },
165
- "string_quoted_double": {
420
+ "register": {
421
+ "name": "variable.other.register.viml",
422
+ "match": "(@)([-\"A-Za-z\\d:.%#=*+~_/])",
423
+ "captures": {
424
+ "1": {
425
+ "name": "punctuation.definition.register.viml"
426
+ }
427
+ }
428
+ },
429
+ "variable": {
166
430
  "patterns": [
167
431
  {
168
- "match": "\"(\\\\\\\\|\\\\\"|\\n[^\\S\\n]*\\\\|[^\\n\"])*\"",
169
- "name": "string.quoted.double.viml"
432
+ "name": "variable.language.self.viml",
433
+ "match": "\\b(self)\\b"
434
+ },
435
+ {
436
+ "name": "support.variable.environment.viml",
437
+ "match": "(\\$)\\w+",
438
+ "captures": {
439
+ "1": {
440
+ "name": "punctuation.definition.variable.viml"
441
+ }
442
+ }
443
+ },
444
+ {
445
+ "name": "variable.other.viml",
446
+ "match": "(&?)(?:([sSgGbBwWlLaAvV](:))|[@$]|&(?!&))\\w*",
447
+ "captures": {
448
+ "1": {
449
+ "name": "punctuation.definition.reference.viml"
450
+ },
451
+ "2": {
452
+ "name": "storage.modifier.scope.viml"
453
+ },
454
+ "3": {
455
+ "name": "punctuation.definition.scope.key-value.viml"
456
+ }
457
+ }
170
458
  }
171
459
  ]
172
460
  },
173
- "string_quoted_single": {
461
+ "supportType": {
462
+ "name": "support.type.viml",
463
+ "match": "(<).*?(>)",
464
+ "captures": {
465
+ "1": {
466
+ "name": "punctuation.definition.bracket.angle.begin.viml"
467
+ },
468
+ "2": {
469
+ "name": "punctuation.definition.bracket.angle.end.viml"
470
+ }
471
+ }
472
+ },
473
+ "supportVariable": {
474
+ "name": "support.variable.viml",
475
+ "match": "\\b(?:am(?:enu)?|(?:hl|inc)?search|[Bb]uf(?:[Nn]ew[Ff]ile|[Rr]ead)?|[Ff]ile[Tt]ype)\\b"
476
+ },
477
+ "highlightLink": {
478
+ "match": "(?x)^\\s* (:)? \\s* (?# 1: punctuation.separator.key-value.colon.viml) (hi|highlight) (?# 2: support.function.highlight.viml) (!)? (?# 3: storage.modifier.force.viml) (?:\\s+(def|default))? (?# 4: support.function.highlight-default.viml) (?:\\s+(link)) (?# 5: support.function.highlight-link.viml) (?:\\s+([-\\w]+)) (?# 6: variable.parameter.group-name.viml) (?:\\s+(?:(NONE)|([-\\w]+)))?",
479
+ "captures": {
480
+ "1": {
481
+ "name": "punctuation.separator.key-value.colon.viml"
482
+ },
483
+ "2": {
484
+ "name": "support.function.highlight.viml"
485
+ },
486
+ "3": {
487
+ "name": "storage.modifier.force.viml"
488
+ },
489
+ "4": {
490
+ "name": "support.function.highlight-default.viml"
491
+ },
492
+ "5": {
493
+ "name": "support.function.highlight-link.viml"
494
+ },
495
+ "6": {
496
+ "name": "variable.parameter.group-name.viml"
497
+ },
498
+ "7": {
499
+ "name": "support.constant.highlighting.viml"
500
+ },
501
+ "8": {
502
+ "name": "variable.parameter.group-name.viml"
503
+ }
504
+ }
505
+ },
506
+ "syntax": {
507
+ "name": "meta.syntax-item.viml",
508
+ "begin": "^\\s*(:)?\\s*(syntax|syn?)(?=\\s|$)",
509
+ "end": "$",
510
+ "beginCaptures": {
511
+ "1": {
512
+ "name": "punctuation.separator.key-value.colon.viml"
513
+ },
514
+ "2": {
515
+ "name": "support.function.syntax-item.viml"
516
+ }
517
+ },
174
518
  "patterns": [
175
519
  {
176
- "match": "'(''|\\n[^\\S\\n]*\\\\|[^\\n'])*'",
177
- "name": "string.quoted.single.viml"
520
+ "match": "\\G\\s+(case)(?:\\s+(match|ignore))?(?=\\s|$)",
521
+ "captures": {
522
+ "1": {
523
+ "name": "support.function.syntax-case.viml"
524
+ },
525
+ "2": {
526
+ "name": "support.constant.$2-case.viml"
527
+ }
528
+ }
529
+ },
530
+ {
531
+ "match": "\\G\\s+(spell)(?:\\s+(toplevel|notoplevel|default))?(?=\\s|$)",
532
+ "captures": {
533
+ "1": {
534
+ "name": "support.function.syntax-spellcheck.viml"
535
+ },
536
+ "2": {
537
+ "name": "support.constant.$2-checking.viml"
538
+ }
539
+ }
540
+ },
541
+ {
542
+ "begin": "\\G\\s+(keyword)(?:\\s+([-\\w]+))?",
543
+ "end": "(?=$)",
544
+ "beginCaptures": {
545
+ "1": {
546
+ "name": "support.function.syntax-keywords.viml"
547
+ },
548
+ "2": {
549
+ "name": "variable.parameter.group-name.viml"
550
+ }
551
+ },
552
+ "contentName": "keyword.other.syntax-definition.viml",
553
+ "patterns": [
554
+ {
555
+ "include": "#syntaxOptions"
556
+ },
557
+ {
558
+ "include": "#expr"
559
+ }
560
+ ]
561
+ },
562
+ {
563
+ "begin": "\\G\\s+(match)(?:\\s+([-\\w]+))?\\s*",
564
+ "end": "(?=$)",
565
+ "beginCaptures": {
566
+ "1": {
567
+ "name": "support.function.syntax-match.viml"
568
+ },
569
+ "2": {
570
+ "name": "variable.parameter.group-name.viml"
571
+ }
572
+ },
573
+ "patterns": [
574
+ {
575
+ "include": "#syntaxRegex"
576
+ }
577
+ ]
578
+ },
579
+ {
580
+ "begin": "\\G\\s+(region)(?:\\s+([-\\w]+))?",
581
+ "end": "(?=$)",
582
+ "beginCaptures": {
583
+ "1": {
584
+ "name": "support.function.syntax-region.viml"
585
+ },
586
+ "2": {
587
+ "name": "variable.parameter.group-name.viml"
588
+ }
589
+ },
590
+ "patterns": [
591
+ {
592
+ "include": "#syntaxOptions"
593
+ },
594
+ {
595
+ "include": "$self"
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "begin": "\\G\\s+(cluster)(?:\\s+([-\\w]+))?(?=\\s|$)",
601
+ "end": "(?=$)",
602
+ "beginCaptures": {
603
+ "1": {
604
+ "name": "support.function.syntax-cluster.viml"
605
+ },
606
+ "2": {
607
+ "name": "variable.parameter.group-name.viml"
608
+ }
609
+ },
610
+ "patterns": [
611
+ {
612
+ "include": "#syntaxOptions"
613
+ },
614
+ {
615
+ "include": "$self"
616
+ }
617
+ ]
618
+ },
619
+ {
620
+ "match": "\\G\\s+(conceal)(?:\\s+(on|off)(?=\\s|$))?",
621
+ "captures": {
622
+ "1": {
623
+ "name": "support.function.syntax-conceal.viml"
624
+ },
625
+ "2": {
626
+ "name": "support.constant.boolean.$2.viml"
627
+ }
628
+ }
629
+ },
630
+ {
631
+ "match": "\\G\\s+(include)(?:\\s+((@)?[-\\w]+))?(?:\\s+(\\S+))?",
632
+ "captures": {
633
+ "1": {
634
+ "name": "support.function.syntax-include.viml"
635
+ },
636
+ "2": {
637
+ "name": "variable.parameter.group-name.viml"
638
+ },
639
+ "3": {
640
+ "name": "punctuation.definition.group-reference.viml"
641
+ },
642
+ "4": {
643
+ "name": "string.unquoted.filename.viml",
644
+ "patterns": [
645
+ {
646
+ "include": "#supportType"
647
+ }
648
+ ]
649
+ }
650
+ }
651
+ },
652
+ {
653
+ "begin": "\\G\\s+(sync)(?=\\s|$)",
654
+ "end": "$",
655
+ "beginCaptures": {
656
+ "1": {
657
+ "name": "support.function.syntax-sync.viml"
658
+ }
659
+ },
660
+ "patterns": [
661
+ {
662
+ "match": "\\G\\s+(fromstart)(?=\\s|$)",
663
+ "captures": {
664
+ "1": {
665
+ "name": "support.constant.sync-$1.viml"
666
+ }
667
+ }
668
+ },
669
+ {
670
+ "match": "\\G\\s+(ccomment|clear)(?:\\s+(?![-\\w]+\\s*=)([-\\w]+))?",
671
+ "captures": {
672
+ "1": {
673
+ "name": "support.constant.sync-$1.viml"
674
+ },
675
+ "2": {
676
+ "name": "variable.parameter.group-name.viml"
677
+ }
678
+ }
679
+ },
680
+ {
681
+ "match": "\\G\\s+(minlines|lines)\\s*(=)(\\d*)",
682
+ "captures": {
683
+ "1": {
684
+ "name": "support.constant.sync-mode.viml"
685
+ },
686
+ "2": {
687
+ "name": "punctuation.assignment.parameter.viml"
688
+ },
689
+ "3": {
690
+ "name": "constant.numeric.integer.viml"
691
+ }
692
+ }
693
+ },
694
+ {
695
+ "match": "(?x)\\G\\s+(match|region)(?:\\s+(?![-\\w]+\\s*=)([-\\w]+))?",
696
+ "captures": {
697
+ "1": {
698
+ "name": "support.constant.sync-mode.viml"
699
+ },
700
+ "2": {
701
+ "name": "variable.parameter.group-name.viml"
702
+ },
703
+ "3": {
704
+ "name": "support.constant.sync-mode-location.viml"
705
+ }
706
+ }
707
+ },
708
+ {
709
+ "begin": "(?<=\\s)(groupt?here|linecont)(?:\\s+(?![-\\w]+\\s*=)([-\\w]+))?(?=\\s|$)",
710
+ "end": "(?=$)",
711
+ "beginCaptures": {
712
+ "1": {
713
+ "name": "support.constant.sync-match.viml"
714
+ },
715
+ "2": {
716
+ "name": "variable.parameter.group-name.viml"
717
+ }
718
+ },
719
+ "patterns": [
720
+ {
721
+ "include": "#syntaxRegex"
722
+ }
723
+ ]
724
+ },
725
+ {
726
+ "include": "#syntaxOptions"
727
+ }
728
+ ]
729
+ },
730
+ {
731
+ "include": "$self"
178
732
  }
179
733
  ]
180
734
  },
181
- "string_regex": {
735
+ "syntaxOptions": {
182
736
  "patterns": [
183
737
  {
184
- "match": "/(\\\\\\\\|\\\\/|\\n[^\\S\\n]*\\\\|[^\\n/])*/",
185
- "name": "string.regexp.viml"
738
+ "name": "meta.syntax-item.pattern-argument.viml",
739
+ "begin": "(?<=\\s)(start|skip|end)(?:\\s*(=))",
740
+ "end": "(?=$|\\s)",
741
+ "beginCaptures": {
742
+ "1": {
743
+ "name": "support.constant.$1-pattern.viml"
744
+ },
745
+ "2": {
746
+ "name": "punctuation.assignment.parameter.viml"
747
+ }
748
+ },
749
+ "patterns": [
750
+ {
751
+ "include": "#regex"
752
+ }
753
+ ]
754
+ },
755
+ {
756
+ "name": "meta.syntax-item.argument.viml",
757
+ "match": "(?x)(?<=\\s)\n((?:matchgroup|contains|containedin|nextgroup|add|remove|minlines|linebreaks|maxlines)(?=\\s*=)\n|(?:cchar|conceal|concealends|contained|display|excludenl|extend|fold|keepend|oneline|skipempty|skipnl|skipwhite|transparent))\n(?:(?=$|\\s)|\\s*(=)(\\S*)?)",
758
+ "captures": {
759
+ "1": {
760
+ "name": "support.constant.syntax-$1.viml"
761
+ },
762
+ "2": {
763
+ "name": "punctuation.assignment.parameter.viml"
764
+ },
765
+ "3": {
766
+ "name": "string.unquoted.syntax-option.viml",
767
+ "patterns": [
768
+ {
769
+ "include": "#numbers"
770
+ },
771
+ {
772
+ "match": ",",
773
+ "name": "punctuation.separator.comma.viml"
774
+ },
775
+ {
776
+ "match": "@",
777
+ "name": "punctuation.definition.group-reference.viml"
778
+ }
779
+ ]
780
+ }
781
+ }
186
782
  }
187
783
  ]
188
784
  },
189
- "support_function": {
785
+ "syntaxRegex": {
190
786
  "patterns": [
191
787
  {
192
- "match": "\\b(set(local|global)?|let|command|filetype|colorscheme|\\w*map|\\w*a(b|brev)?|syn|exe(c|cute)?|ec(ho|)?|au(tocmd|)?)\\b",
193
- "name": "support.function.viml"
788
+ "include": "#syntaxOptions"
789
+ },
790
+ {
791
+ "name": "string.regexp.viml",
792
+ "begin": "(?<=\\s)(\\S)",
793
+ "end": "(?:(\\1)(\\S*)(.*))?$",
794
+ "patterns": [
795
+ {
796
+ "include": "#regexInnards"
797
+ }
798
+ ],
799
+ "beginCaptures": {
800
+ "1": {
801
+ "name": "punctuation.definition.string.begin.viml"
802
+ }
803
+ },
804
+ "endCaptures": {
805
+ "1": {
806
+ "name": "punctuation.definition.string.end.viml"
807
+ },
808
+ "2": {
809
+ "patterns": [
810
+ {
811
+ "include": "#regexOffset"
812
+ }
813
+ ]
814
+ },
815
+ "3": {
816
+ "patterns": [
817
+ {
818
+ "include": "#syntaxOptions"
819
+ },
820
+ {
821
+ "include": "$self"
822
+ }
823
+ ]
824
+ }
825
+ }
194
826
  }
195
827
  ]
196
828
  },
197
- "support_type": {
829
+ "regex": {
830
+ "name": "string.regexp.viml",
831
+ "begin": "(?<=\\s|=)(\\S)",
832
+ "end": "$|(\\1)(\\S*)",
198
833
  "patterns": [
199
834
  {
200
- "match": "<.*?>",
201
- "name": "support.type.viml"
835
+ "include": "#regexInnards"
202
836
  }
203
- ]
837
+ ],
838
+ "beginCaptures": {
839
+ "1": {
840
+ "name": "punctuation.definition.string.begin.viml"
841
+ }
842
+ },
843
+ "endCaptures": {
844
+ "1": {
845
+ "name": "punctuation.definition.string.end.viml"
846
+ },
847
+ "2": {
848
+ "patterns": [
849
+ {
850
+ "include": "#regexOffset"
851
+ }
852
+ ]
853
+ }
854
+ }
204
855
  },
205
- "support_variable": {
856
+ "regexOffset": {
857
+ "name": "meta.pattern-offset.viml",
858
+ "match": "(ms|me|hs|he|rs|re|lc)(=)(?:(\\d+)|([se])(?:([-+])(\\d+))?)(,)?",
859
+ "captures": {
860
+ "1": {
861
+ "name": "constant.language.pattern-offset.viml"
862
+ },
863
+ "2": {
864
+ "name": "punctuation.assignment.parameter.viml"
865
+ },
866
+ "3": {
867
+ "name": "constant.numeric.integer.viml"
868
+ },
869
+ "4": {
870
+ "name": "constant.language.pattern-position.viml"
871
+ },
872
+ "5": {
873
+ "name": "keyword.operator.arithmetic.viml"
874
+ },
875
+ "6": {
876
+ "name": "constant.numeric.integer.viml"
877
+ },
878
+ "7": {
879
+ "name": "punctuation.separator.comma.viml"
880
+ }
881
+ }
882
+ },
883
+ "regexInnards": {
206
884
  "patterns": [
207
885
  {
208
- "match": "\\b(am(enu|)?|(hl|inc)?search|[Bb]uf([Nn]ew[Ff]ile|[Rr]ead)?|[Ff]ile[Tt]ype)\\b",
209
- "name": "support.variable.viml"
886
+ "begin": "\\[",
887
+ "end": "\\]|$",
888
+ "beginCaptures": {
889
+ "0": {
890
+ "name": "punctuation.definition.character-class.begin.viml"
891
+ }
892
+ },
893
+ "endCaptures": {
894
+ "0": {
895
+ "name": "punctuation.definition.character-class.end.viml"
896
+ }
897
+ },
898
+ "patterns": [
899
+ {
900
+ "include": "#regexInnards"
901
+ }
902
+ ]
903
+ },
904
+ {
905
+ "name": "constant.character.escape.viml",
906
+ "match": "(\\\\).",
907
+ "captures": {
908
+ "1": {
909
+ "name": "punctuation.definition.backslash.escape.viml"
910
+ }
911
+ }
210
912
  }
211
913
  ]
212
914
  },
213
- "variable": {
915
+ "extraVimFunc": {
916
+ "name": "support.function.viml",
917
+ "match": "(?x)\\b\n\t(execute|Plugin|autocmd|[cinvo]?(?:un|nore)?(?:map|menu)|(?:range)?go(?:to)?|(?:count)?(?:pop?|tag?|tn(?:ext)?|tp(?:revious)?|tr(?:ewind)?)\n\t|(?:range)?(?:s(?:ubstitute)?|ret(?:ab)?|g(?:lobal)?)|unm(?:ap)?|map_l|mapc(?:lear)?|N?buffer|N?bnext|N?bNext|N?bprevious|N?bmod\n\t|ab(?:breviate)?|norea(?:bbrev)?|[ic](?:un|nore)?ab|split_f|rangefold|[ic](?:un|nore)?ab|[ic]abbrev|edit_f|next_f\n\t|(?:range)?(?:w(?:rite)?|up(?:date)?)|sar)\n\\b"
918
+ },
919
+ "keywordLists": {
214
920
  "patterns": [
215
921
  {
216
- "match": "([sSgGbBwWlLaAvV]:|@|$|&(?!&))\\w*",
217
- "name": "variable.other.viml"
922
+ "include": "#vimTodo"
923
+ },
924
+ {
925
+ "include": "#vimAugroupKey"
926
+ },
927
+ {
928
+ "include": "#vimAutoEvent"
929
+ },
930
+ {
931
+ "include": "#vimBehaveModel"
932
+ },
933
+ {
934
+ "include": "#vimCommand"
935
+ },
936
+ {
937
+ "include": "#vimFTCmd"
938
+ },
939
+ {
940
+ "include": "#vimFTOption"
941
+ },
942
+ {
943
+ "include": "#vimFgBgAttrib"
944
+ },
945
+ {
946
+ "include": "#vimFuncKey"
947
+ },
948
+ {
949
+ "include": "#vimFuncName"
950
+ },
951
+ {
952
+ "include": "#vimGroup"
953
+ },
954
+ {
955
+ "include": "#vimGroupSpecial"
956
+ },
957
+ {
958
+ "include": "#vimHLGroup"
959
+ },
960
+ {
961
+ "include": "#vimHiAttrib"
962
+ },
963
+ {
964
+ "include": "#vimHiClear"
965
+ },
966
+ {
967
+ "include": "#vimHiCtermColor"
968
+ },
969
+ {
970
+ "include": "#vimMapModKey"
971
+ },
972
+ {
973
+ "include": "#vimOption"
974
+ },
975
+ {
976
+ "include": "#vimPattern"
977
+ },
978
+ {
979
+ "include": "#vimStdPlugin"
980
+ },
981
+ {
982
+ "include": "#vimSynCase"
983
+ },
984
+ {
985
+ "include": "#vimSynType"
986
+ },
987
+ {
988
+ "include": "#vimSyncC"
989
+ },
990
+ {
991
+ "include": "#vimSyncLinecont"
992
+ },
993
+ {
994
+ "include": "#vimSyncMatch"
995
+ },
996
+ {
997
+ "include": "#vimSyncNone"
998
+ },
999
+ {
1000
+ "include": "#vimSyncRegion"
1001
+ },
1002
+ {
1003
+ "include": "#vimUserAttrbCmplt"
1004
+ },
1005
+ {
1006
+ "include": "#vimUserAttrbKey"
1007
+ },
1008
+ {
1009
+ "include": "#vimUserCommand"
1010
+ },
1011
+ {
1012
+ "include": "#vimErrSetting"
218
1013
  }
219
1014
  ]
1015
+ },
1016
+ "vimTodo": {
1017
+ "name": "support.constant.${1:/downcase}.viml",
1018
+ "match": "\\b(COMBAK|FIXME|TODO|XXX)\\b"
1019
+ },
1020
+ "vimAugroupKey": {
1021
+ "name": "support.function.vimAugroupKey.viml",
1022
+ "match": "\\b(aug|augroup)\\b"
1023
+ },
1024
+ "vimAutoEvent": {
1025
+ "name": "support.function.auto-event.viml",
1026
+ "match": "(?i)\\b(BufAdd|BufCreate|BufDelete|BufEnter|BufFilePost|BufFilePre|BufHidden|BufLeave|BufNew|BufNewFile|BufRead|BufReadCmd|BufReadPost|BufReadPre|BufUnload|BufWinEnter|BufWinLeave|BufWipeout|BufWrite|BufWriteCmd|BufWritePost|BufWritePre|CmdUndefined|CmdwinEnter|CmdwinLeave|ColorScheme|CompleteDone|CursorHold|CursorHoldI|CursorMoved|CursorMovedI|EncodingChanged|FileAppendCmd|FileAppendPost|FileAppendPre|FileChangedRO|FileChangedShell|FileChangedShellPost|FileEncoding|FileReadCmd|FileReadPost|FileReadPre|FileType|FileWriteCmd|FileWritePost|FileWritePre|FilterReadPost|FilterReadPre|FilterWritePost|FilterWritePre|FocusGained|FocusLost|FuncUndefined|GUIEnter|GUIFailed|InsertChange|InsertCharPre|InsertEnter|InsertLeave|MenuPopup|OptionSet|QuickFixCmdPost|QuickFixCmdPre|QuitPre|RemoteReply|SessionLoadPost|ShellCmdPost|ShellFilterPost|SourceCmd|SourcePre|SpellFileMissing|StdinReadPost|StdinReadPre|SwapExists|Syntax|TabClosed|TabEnter|TabLeave|TabNew|TermChanged|TermResponse|TextChanged|TextChangedI|User|VimEnter|VimLeave|VimLeavePre|VimResized|WinEnter|WinLeave|WinNew)\\b"
1027
+ },
1028
+ "vimBehaveModel": {
1029
+ "name": "support.function.vimBehaveModel.viml",
1030
+ "match": "\\b(mswin|xterm)\\b"
1031
+ },
1032
+ "vimCommand": {
1033
+ "name": "support.function.command.viml",
1034
+ "match": "\\b(a|ab|abc|abclear|abo|aboveleft|all?|ar|args|arga|argadd|argd|argdelete|argdo|arge|argedit|argg|argglobal|argl|arglocal|argu|argument|as|ascii|au|b|buffer|ba|ball|badd?|bd|bdelete|bel|belowright|bf|bfirst|bl|blast|bm|bmodified|bn|bnext|bN|bNext|bo|botright|bp|bprevious|br|brewind|break?|breaka|breakadd|breakd|breakdel|breakl|breaklist|bro|browse|bufdo|buffers|bun|bunload|bw|bwipeout|c|change|cabc|cabclear|cad|caddbuffer|cadde|caddexpr|caddf|caddfile|call?|cat|catch|cb|cbuffer|cbo|cbottom|cc|ccl|cclose|cd|cdo|ce|center|cex|cexpr|cf|cfile|cfdo|cfir|cfirst|cg|cgetfile|cgetb|cgetbuffer|cgete|cgetexpr|changes|chd|chdir|che|checkpath|checkt|checktime|chi|chistory|cl|clist|cla|clast|cle|clearjumps|clo|close|cmapc|cmapclear|cn|cnext|cN|cNext|cnew|cnewer|cnf|cnfile|cNf|cNfile|co|copy|col|colder|colo|colorscheme|com|comc|comclear|comp|compiler|con|continue|conf|confirm|copen?|cp|cprevious|cpf|cpfile|cq|cquit|cr|crewind|cs|cscope|cstag|cuna|cunabbrev|cw|cwindow|d|delete|debug|debugg|debuggreedy|delc|delcommand|delel|delep|deletel|deletep|deletl|deletp|delf|delfunction|dell|delm|delmarks|delp|dep|di|display|dif|diffupdate|diffg|diffget|diffo|diffoff|diffp|diffpatch|diffput?|diffs|diffsplit|difft|diffthis|dig|digraphs|dir|dj|djump|dl|dli|dlist|do|doau|dp|dr|drop|ds|dsearch|dsp|dsplit|e|edit|ea|earlier|ec|echoe|echoerr|echom|echomsg|echon|el|else|elseif?|em|emenu|en|endif|endf|endfunction|endfor?|endt|endtry|endw|endwhile|enew?|ex|exit?|exu|exusage|f|file|files|filet|filetype|filt|filter|find?|fina|finally|fini|finish|fir|first|fix|fixdel|fo|fold|foldc|foldclose|foldd|folddoopen|folddoc|folddoclosed|foldo|foldopen|for|fu|function|g|go|goto|gr|grep|grepa|grepadd|gui|gvim|h|help|ha|hardcopy|helpc|helpclose|helpf|helpfind|helpg|helpgrep|helpt|helptags|hi|hide?|his|history|i|ia|iabc|iabclear|if|ij|ijump|il|ilist|imapc|imapclear|in|intro|is|isearch|isp|isplit|iuna|iunabbrev|j|join|ju|jumps|k|kee|keepmarks|keepa|keepalt|keepj|keepjumps|keepp|keeppatterns|l|list|la|last|lad|laddexpr|laddb|laddbuffer|laddf|laddfile|lan|language|lat|later|lb|lbuffer|lbo|lbottom|lcd?|lch|lchdir|lcl|lclose|lcs|lcscope|ldo?|le|left|lefta|leftabove|lex|lexpr|lf|lfile|lfdo|lfir|lfirst|lg|lgetfile|lgetb|lgetbuffer|lgete|lgetexpr|lgr|lgrep|lgrepa|lgrepadd|lh|lhelpgrep|lhi|lhistory|ll|lla|llast|lli|llist|lmake?|lmapc|lmapclear|lN|lNext|lne|lnext|lnew|lnewer|lnf|lnfile|lNf|lNfile|lo|loadview|loadk|loadkeymap|loc|lockmarks|lockv|lockvar|lol|lolder|lop|lopen|lp|lprevious|lpf|lpfile|lr|lrewind|ls|lt|ltag|lua|luado|luafile|lv|lvimgrep|lvimgrepa|lvimgrepadd|lw|lwindow|m|move|ma|mark|make?|marks|mat|match|menut|menutranslate|mes|messages|mk|mkexrc|mks|mksession|mksp|mkspell|mkv|mkvimrc|mkview?|mode?|mz|mzscheme|mzf|mzfile|n|next|nb|nbkey|nbc|nbclose|nbs|nbstart|new|nmapc|nmapclear|noa|noautocmd|noh|nohlsearch|nor|nore|nos|noswapfile|nu|number|o|open|ol|oldfiles|omapc|omapclear|on|only|opt|options|ownsyntax|p|print|pa|packadd|packl|packloadall|pc|pclose|pe|perl|ped|pedit|perldo?|pop?|popup?|pp|ppop|pre|preserve|prev|previous|pro|prof|profile|profd|profdel|promptf|promptfind|promptr|promptrepl|ps|psearch|ptag?|ptf|ptfirst|ptj|ptjump|ptl|ptlast|ptn|ptnext|ptN|ptNext|ptp|ptprevious|ptr|ptrewind|pts|ptselect|put?|pwd?|py|python|py3|py3do|pydo|pyf|pyfile|python3|q|quit|qa|qall|quita|quitall|r|read|rec|recover|redo?|redir?|redr|redraw|redraws|redrawstatus|reg|registers|res|resize|ret|retab|retu|return|rew|rewind|ri|right|rightb|rightbelow|ru|runtime|ruby?|rubydo?|rubyf|rubyfile|rundo|rv|rviminfo|sa|sargument|sall?|san|sandbox|sav|saveas|sb|sbuffer|sba|sball|sbf|sbfirst|sbl|sblast|sbm|sbmodified|sbn|sbnext|sbN|sbNext|sbp|sbprevious|sbr|sbrewind|sc|sce|scg|sci|scI|scl|scp|scr|scriptnames|scripte|scriptencoding|scs|scscope|set?|setf|setfiletype|setg|setglobal|setl|setlocal|sf|sfind|sfir|sfirst|sg|sgc|sge|sgi|sgI|sgl|sgn|sgp|sgr|sh|shell|si|sI|sic|sIc|sie|sIe|sig|sIg|sign|sIl|sil|silent|sim|simalt|sin|sIn|sip|sIp|sir|sIr|sl|sleep|sla|slast|sm|smagic|sm|smap|sme|smenu|smile|sn|snext|sN|sNext|sno|snomagic|snoreme|snoremenu|so|source|sort?|sp|split|spe|spellgood|spelld|spelldump|spelli|spellinfo|spellr|spellrepall|spellu|spellundo|spellw|spellwrong|spr|sprevious|sr|src|sre|srewind|srg|sri|srI|srl|srn|srp|st|stop|stag?|star|startinsert|startg|startgreplace|startr|startreplace|stj|stjump|stopi|stopinsert|sts|stselect|sun|sunhide|sunme|sunmenu|sus|suspend|sv|sview|sw|swapname|sy|syn|sync|syncbind|syntime|t|tag?|tab|tabc|tabclose|tabdo?|tabe|tabedit|tabf|tabfind|tabfir|tabfirst|tabl|tablast|tabm|tabmove|tabn|tabnext|tabN|tabNext|tabnew|tabo|tabonly|tabp|tabprevious|tabr|tabrewind|tabs|tags|tcl?|tcldo?|tclf|tclfile|te|tearoff|tf|tfirst|th|throw|tj|tjump|tl|tlast|tm|tmenu|tn|tnext|tN|tNext|to|topleft|tp|tprevious|tr|trewind|try|ts|tselect|tu|tunmenu|u|undo|una|unabbreviate|undoj|undojoin|undol|undolist|unh|unhide|unl|unlo|unlockvar|uns|unsilent|up|update|v|ve|version|verb|verbose|vert|vertical|vi|visual|view?|vim|vimgrep|vimgrepa|vimgrepadd|viu|viusage|vmapc|vmapclear|vnew?|vs|vsplit|w|write|wa|wall|wh|while|win|winsize|winc|wincmd|windo|winp|winpos|wn|wnext|wN|wNext|wp|wprevious|wq|wqa|wqall|ws|wsverb|wundo|wv|wviminfo|x|xit|xa|xall|xmapc|xmapclear|xme|xmenu|xnoreme|xnoremenu|xprop|xunme|xunmenu|xwininfo|y|yank)\\b"
1035
+ },
1036
+ "vimErrSetting": {
1037
+ "name": "invalid.deprecated.legacy-setting.viml",
1038
+ "match": "\\b(autoprint|beautify|biosk|bioskey|consk|conskey|flash|graphic|hardtabs|ht|mesg|noautoprint|nobeautify|nobiosk|nobioskey|noconsk|noconskey|noflash|nographic|nohardtabs|nomesg|nonovice|noop|noopen|nooptimize|noredraw|noslow|noslowopen|nosourceany|novice|now1200|now300|now9600|op|open|optimize|redraw|slow|slowopen|sourceany|w1200|w300|w9600)\\b"
1039
+ },
1040
+ "vimFTCmd": {
1041
+ "name": "support.function.vimFTCmd.viml",
1042
+ "match": "\\b(filet|filetype)\\b"
1043
+ },
1044
+ "vimFTOption": {
1045
+ "name": "support.function.vimFTOption.viml",
1046
+ "match": "\\b(detect|indent|off|on|plugin)\\b"
1047
+ },
1048
+ "vimFgBgAttrib": {
1049
+ "name": "support.constant.attribute.viml",
1050
+ "match": "\\b(background|bg|fg|foreground|none)\\b"
1051
+ },
1052
+ "vimFuncKey": {
1053
+ "name": "support.function.vimFuncKey.viml",
1054
+ "match": "\\b(fu|function)\\b"
1055
+ },
1056
+ "vimFuncName": {
1057
+ "name": "support.function.viml",
1058
+ "match": "\\b(abs|acos|add|and|append|argc|argidx|arglistid|argv|asin|assert_equal|assert_exception|assert_fails|assert_false|assert_inrange|assert_match|assert_notequal|assert_notmatch|assert_true|atan|atan2|browse|browsedir|bufexists|buflisted|bufloaded|bufname|bufnr|bufwinid|bufwinnr|byte2line|byteidx|byteidxcomp|call|ceil|ch_close|ch_close_in|ch_evalexpr|ch_evalraw|ch_getbufnr|ch_getjob|ch_info|ch_log|ch_logfile|ch_open|ch_read|ch_readraw|ch_sendexpr|ch_sendraw|ch_setoptions|ch_status|changenr|char2nr|cindent|clearmatches|col|complete|complete_add|complete_check|confirm|copy|cos|cosh|count|cscope_connection|cursor|deepcopy|delete|did_filetype|diff_filler|diff_hlID|empty|escape|eval|eventhandler|executable|execute|exepath|exists|exp|expand|extend|feedkeys|filereadable|filewritable|filter|finddir|findfile|float2nr|floor|fmod|fnameescape|fnamemodify|foldclosed|foldclosedend|foldlevel|foldtext|foldtextresult|foreground|funcref|function|garbagecollect|get|getbufinfo|getbufline|getbufvar|getchar|getcharmod|getcharsearch|getcmdline|getcmdpos|getcmdtype|getcmdwintype|getcompletion|getcurpos|getcwd|getfontname|getfperm|getfsize|getftime|getftype|getline|getloclist|getmatches|getpid|getpos|getqflist|getreg|getregtype|gettabinfo|gettabvar|gettabwinvar|getwininfo|getwinposx|getwinposy|getwinvar|glob|glob2regpat|globpath|has|has_key|haslocaldir|hasmapto|histadd|histdel|histget|histnr|hlexists|hlID|hostname|iconv|indent|index|input|inputdialog|inputlist|inputrestore|inputsave|inputsecret|insert|invert|isdirectory|islocked|isnan|items|job_getchannel|job_info|job_setoptions|job_start|job_status|job_stop|join|js_decode|js_encode|json_decode|json_encode|keys|len|libcall|libcallnr|line|line2byte|lispindent|localtime|log|log10|luaeval|map|maparg|mapcheck|match|matchadd|matchaddpos|matcharg|matchdelete|matchend|matchlist|matchstr|matchstrpos|max|min|mkdir|mode|mzeval|nextnonblank|nr2char|or|pathshorten|perleval|pow|prevnonblank|printf|pumvisible|py3eval|pyeval|range|readfile|reltime|reltimefloat|reltimestr|remote_expr|remote_foreground|remote_peek|remote_read|remote_send|remove|rename|repeat|resolve|reverse|round|screenattr|screenchar|screencol|screenrow|search|searchdecl|searchpair|searchpairpos|searchpos|server2client|serverlist|setbufvar|setcharsearch|setcmdpos|setfperm|setline|setloclist|setmatches|setpos|setqflist|setreg|settabvar|settabwinvar|setwinvar|sha256|shellescape|shiftwidth|simplify|sin|sinh|sort|soundfold|spellbadword|spellsuggest|split|sqrt|str2float|str2nr|strcharpart|strchars|strdisplaywidth|strftime|strgetchar|stridx|string|strlen|strpart|strridx|strtrans|strwidth|submatch|substitute|synconcealed|synID|synIDattr|synIDtrans|synstack|system|systemlist|tabpagebuflist|tabpagenr|tabpagewinnr|tagfiles|taglist|tan|tanh|tempname|test_alloc_fail|test_autochdir|test_disable_char_avail|test_garbagecollect_now|test_null_channel|test_null_dict|test_null_job|test_null_list|test_null_partial|test_null_string|test_settime|timer_info|timer_pause|timer_start|timer_stop|timer_stopall|tolower|toupper|tr|trunc|type|undofile|undotree|uniq|values|virtcol|visualmode|wildmenumode|win_findbuf|win_getid|win_gotoid|win_id2tabwin|win_id2win|winbufnr|wincol|winheight|winline|winnr|winrestcmd|winrestview|winsaveview|winwidth|wordcount|writefile|xor)\\b"
1059
+ },
1060
+ "vimGroup": {
1061
+ "name": "support.type.group.viml",
1062
+ "match": "(?i)\\b(Boolean|Character|Comment|Conditional|Constant|Debug|Define|Delimiter|Error|Exception|Float|Function|Identifier|Ignore|Include|Keyword|Label|Macro|Number|Operator|PreCondit|PreProc|Repeat|Special|SpecialChar|SpecialComment|Statement|StorageClass|String|Structure|Tag|Todo|Type|Typedef|Underlined)\\b"
1063
+ },
1064
+ "vimGroupSpecial": {
1065
+ "name": "support.function.vimGroupSpecial.viml",
1066
+ "match": "\\b(ALL|ALLBUT|CONTAINED|TOP)\\b"
1067
+ },
1068
+ "vimHLGroup": {
1069
+ "name": "support.type.highlight-group.viml",
1070
+ "match": "(?i)\\b(ColorColumn|Cursor|CursorColumn|CursorIM|CursorLine|CursorLineNr|DiffAdd|DiffChange|DiffDelete|DiffText|Directory|EndOfBuffer|ErrorMsg|FoldColumn|Folded|IncSearch|LineNr|MatchParen|Menu|ModeMsg|MoreMsg|NonText|Normal|Pmenu|PmenuSbar|PmenuSel|PmenuThumb|Question|Scrollbar|Search|SignColumn|SpecialKey|SpellBad|SpellCap|SpellLocal|SpellRare|StatusLine|StatusLineNC|TabLine|TabLineFill|TabLineSel|Title|Tooltip|VertSplit|Visual|VisualNOS|WarningMsg|WildMenu)\\b"
1071
+ },
1072
+ "vimHiAttrib": {
1073
+ "name": "support.function.vimHiAttrib.viml",
1074
+ "match": "\\b(bold|inverse|italic|none|reverse|standout|undercurl|underline)\\b"
1075
+ },
1076
+ "vimHiClear": {
1077
+ "name": "support.function.vimHiClear.viml",
1078
+ "match": "\\b(clear)\\b"
1079
+ },
1080
+ "vimHiCtermColor": {
1081
+ "name": "support.constant.colour.color.$1.viml",
1082
+ "match": "\\b(black|blue|brown|cyan|darkblue|darkcyan|darkgray|darkgreen|darkgrey|darkmagenta|darkred|darkyellow|gray|green|grey|lightblue|lightcyan|lightgray|lightgreen|lightgrey|lightmagenta|lightred|magenta|red|white|yellow)\\b"
1083
+ },
1084
+ "vimMapModKey": {
1085
+ "name": "support.function.vimMapModKey.viml",
1086
+ "match": "\\b(buffer|expr|leader|localleader|nowait|plug|script|sid|silent|unique)\\b"
1087
+ },
1088
+ "vimOption": {
1089
+ "name": "support.variable.option.viml",
1090
+ "match": "\\b(acd|ai|akm|al|aleph|allowrevins|altkeymap|ambiwidth|ambw|anti|antialias|ar|arab|arabic|arabicshape|ari|arshape|autochdir|autoindent|autoread|autowrite|autowriteall|aw|awa|background|backspace|backup|backupcopy|backupdir|backupext|backupskip|balloondelay|ballooneval|balloonexpr|bdir|bdlay|belloff|beval|bex|bexpr|bg|bh|bin|binary|bk|bkc|bl|bo|bomb|breakat|breakindent|breakindentopt|bri|briopt|brk|browsedir|bs|bsdir|bsk|bt|bufhidden|buflisted|buftype|casemap|cb|cc|ccv|cd|cdpath|cedit|cf|cfu|ch|charconvert|ci|cin|cindent|cink|cinkeys|cino|cinoptions|cinw|cinwords|clipboard|cm|cmdheight|cmdwinheight|cmp|cms|co|cocu|cole|colorcolumn|columns|com|comments|commentstring|compatible|complete|completefunc|completeopt|confirm|copyindent|cot|cp|cpo|cpoptions|cpt|crb|cryptmethod|cscopepathcomp|cscopeprg|cscopequickfix|cscoperelative|cscopetag|cscopetagorder|cscopeverbose|cspc|csprg|csqf|csre|cst|csto|csverb|cuc|cul|cursor|cursorbind|cursorcolumn|cursorline|cwh|debug|deco|def|define|delcombine|dex|dg|dict|dictionary|diff|diffexpr|diffopt|digraph|dip|dir|directory|display|dy|ea|ead|eadirection|eb|ed|edcompatible|ef|efm|ei|ek|emo|emoji|enc|encoding|endofline|eol|ep|equalalways|equalprg|errorbells|errorfile|errorformat|esckeys|et|eventignore|ex|expandtab|exrc|fcl|fcs|fdc|fde|fdi|fdl|fdls|fdm|fdn|fdo|fdt|fen|fenc|fencs|fex|ff|ffs|fic|fileencoding|fileencodings|fileformat|fileformats|fileignorecase|filetype|fillchars|fixendofline|fixeol|fk|fkmap|flp|fml|fmr|fo|foldclose|foldcolumn|foldenable|foldexpr|foldignore|foldlevel|foldlevelstart|foldmarker|foldmethod|foldminlines|foldnestmax|foldopen|foldtext|formatexpr|formatlistpat|formatoptions|formatprg|fp|fs|fsync|ft|gcr|gd|gdefault|gfm|gfn|gfs|gfw|ghr|go|gp|grepformat|grepprg|gtl|gtt|guicursor|guifont|guifontset|guifontwide|guiheadroom|guioptions|guipty|guitablabel|guitabtooltip|helpfile|helpheight|helplang|hf|hh|hi|hid|hidden|highlight|history|hk|hkmap|hkmapp|hkp|hl|hlg|hls|hlsearch|ic|icon|iconstring|ignorecase|im|imactivatefunc|imactivatekey|imaf|imak|imc|imcmdline|imd|imdisable|imi|iminsert|ims|imsearch|imsf|imstatusfunc|inc|include|includeexpr|incsearch|inde|indentexpr|indentkeys|indk|inex|inf|infercase|insertmode|invacd|invai|invakm|invallowrevins|invaltkeymap|invanti|invantialias|invar|invarab|invarabic|invarabicshape|invari|invarshape|invautochdir|invautoindent|invautoread|invautowrite|invautowriteall|invaw|invawa|invbackup|invballooneval|invbeval|invbin|invbinary|invbk|invbl|invbomb|invbreakindent|invbri|invbuflisted|invcf|invci|invcin|invcindent|invcompatible|invconfirm|invcopyindent|invcp|invcrb|invcscoperelative|invcscopetag|invcscopeverbose|invcsre|invcst|invcsverb|invcuc|invcul|invcursorbind|invcursorcolumn|invcursorline|invdeco|invdelcombine|invdg|invdiff|invdigraph|invea|inveb|inved|invedcompatible|invek|invemo|invemoji|invendofline|inveol|invequalalways|inverrorbells|invesckeys|invet|invex|invexpandtab|invexrc|invfen|invfic|invfileignorecase|invfixendofline|invfixeol|invfk|invfkmap|invfoldenable|invfs|invfsync|invgd|invgdefault|invguipty|invhid|invhidden|invhk|invhkmap|invhkmapp|invhkp|invhls|invhlsearch|invic|invicon|invignorecase|invim|invimc|invimcmdline|invimd|invimdisable|invincsearch|invinf|invinfercase|invinsertmode|invis|invjoinspaces|invjs|invlangnoremap|invlangremap|invlazyredraw|invlbr|invlinebreak|invlisp|invlist|invlnr|invloadplugins|invlpl|invlrm|invlz|invma|invmacatsui|invmagic|invmh|invml|invmod|invmodeline|invmodifiable|invmodified|invmore|invmousef|invmousefocus|invmousehide|invnu|invnumber|invodev|invopendevice|invpaste|invpi|invpreserveindent|invpreviewwindow|invprompt|invpvw|invreadonly|invrelativenumber|invremap|invrestorescreen|invrevins|invri|invrightleft|invrl|invrnu|invro|invrs|invru|invruler|invsb|invsc|invscb|invscrollbind|invscs|invsecure|invsft|invshellslash|invshelltemp|invshiftround|invshortname|invshowcmd|invshowfulltag|invshowmatch|invshowmode|invsi|invsm|invsmartcase|invsmartindent|invsmarttab|invsmd|invsn|invsol|invspell|invsplitbelow|invsplitright|invspr|invsr|invssl|invsta|invstartofline|invstmp|invswapfile|invswf|invta|invtagbsearch|invtagrelative|invtagstack|invtbi|invtbidi|invtbs|invtermbidi|invterse|invtextauto|invtextmode|invtf|invtgst|invtildeop|invtimeout|invtitle|invto|invtop|invtr|invttimeout|invttybuiltin|invttyfast|invtx|invudf|invundofile|invvb|invvisualbell|invwa|invwarn|invwb|invweirdinvert|invwfh|invwfw|invwic|invwildignorecase|invwildmenu|invwinfixheight|invwinfixwidth|invwiv|invwmnu|invwrap|invwrapscan|invwrite|invwriteany|invwritebackup|invws|is|isf|isfname|isi|isident|isk|iskeyword|isp|isprint|joinspaces|js|key|keymap|keymodel|keywordprg|km|kmp|kp|langmap|langmenu|langnoremap|langremap|laststatus|lazyredraw|lbr|lcs|level|linebreak|lines|linespace|lisp|lispwords|list|listchars|lm|lmap|lnr|loadplugins|lpl|lrm|ls|lsp|luadll|lw|lz|ma|macatsui|magic|makeef|makeprg|mat|matchpairs|matchtime|maxcombine|maxfuncdepth|maxmapdepth|maxmem|maxmempattern|maxmemtot|mco|mef|menuitems|mfd|mh|mis|mkspellmem|ml|mls|mm|mmd|mmp|mmt|mod|modeline|modelines|modifiable|modified|more|mouse|mousef|mousefocus|mousehide|mousem|mousemodel|mouses|mouseshape|mouset|mousetime|mp|mps|msm|mzq|mzquantum|nf|noacd|noai|noakm|noallowrevins|noaltkeymap|noanti|noantialias|noar|noarab|noarabic|noarabicshape|noari|noarshape|noautochdir|noautoindent|noautoread|noautowrite|noautowriteall|noaw|noawa|nobackup|noballooneval|nobeval|nobin|nobinary|nobk|nobl|nobomb|nobreakindent|nobri|nobuflisted|nocf|noci|nocin|nocindent|nocompatible|noconfirm|nocopyindent|nocp|nocrb|nocscoperelative|nocscopetag|nocscopeverbose|nocsre|nocst|nocsverb|nocuc|nocul|nocursorbind|nocursorcolumn|nocursorline|nodeco|nodelcombine|nodg|nodiff|nodigraph|noea|noeb|noed|noedcompatible|noek|noemo|noemoji|noendofline|noeol|noequalalways|noerrorbells|noesckeys|noet|noex|noexpandtab|noexrc|nofen|nofic|nofileignorecase|nofixendofline|nofixeol|nofk|nofkmap|nofoldenable|nofs|nofsync|nogd|nogdefault|noguipty|nohid|nohidden|nohk|nohkmap|nohkmapp|nohkp|nohls|nohlsearch|noic|noicon|noignorecase|noim|noimc|noimcmdline|noimd|noimdisable|noincsearch|noinf|noinfercase|noinsertmode|nois|nojoinspaces|nojs|nolangnoremap|nolangremap|nolazyredraw|nolbr|nolinebreak|nolisp|nolist|nolnr|noloadplugins|nolpl|nolrm|nolz|noma|nomacatsui|nomagic|nomh|noml|nomod|nomodeline|nomodifiable|nomodified|nomore|nomousef|nomousefocus|nomousehide|nonu|nonumber|noodev|noopendevice|nopaste|nopi|nopreserveindent|nopreviewwindow|noprompt|nopvw|noreadonly|norelativenumber|noremap|norestorescreen|norevins|nori|norightleft|norl|nornu|noro|nors|noru|noruler|nosb|nosc|noscb|noscrollbind|noscs|nosecure|nosft|noshellslash|noshelltemp|noshiftround|noshortname|noshowcmd|noshowfulltag|noshowmatch|noshowmode|nosi|nosm|nosmartcase|nosmartindent|nosmarttab|nosmd|nosn|nosol|nospell|nosplitbelow|nosplitright|nospr|nosr|nossl|nosta|nostartofline|nostmp|noswapfile|noswf|nota|notagbsearch|notagrelative|notagstack|notbi|notbidi|notbs|notermbidi|noterse|notextauto|notextmode|notf|notgst|notildeop|notimeout|notitle|noto|notop|notr|nottimeout|nottybuiltin|nottyfast|notx|noudf|noundofile|novb|novisualbell|nowa|nowarn|nowb|noweirdinvert|nowfh|nowfw|nowic|nowildignorecase|nowildmenu|nowinfixheight|nowinfixwidth|nowiv|nowmnu|nowrap|nowrapscan|nowrite|nowriteany|nowritebackup|nows|nrformats|nu|number|numberwidth|nuw|odev|oft|ofu|omnifunc|opendevice|operatorfunc|opfunc|osfiletype|pa|packpath|para|paragraphs|paste|pastetoggle|patchexpr|patchmode|path|pdev|penc|perldll|pex|pexpr|pfn|ph|pheader|pi|pm|pmbcs|pmbfn|popt|pp|preserveindent|previewheight|previewwindow|printdevice|printencoding|printexpr|printfont|printheader|printmbcharset|printmbfont|printoptions|prompt|pt|pumheight|pvh|pvw|pythondll|pythonthreedll|qe|quoteescape|rdt|re|readonly|redrawtime|regexpengine|relativenumber|remap|renderoptions|report|restorescreen|revins|ri|rightleft|rightleftcmd|rl|rlc|rnu|ro|rop|rs|rtp|ru|rubydll|ruf|ruler|rulerformat|runtimepath|sb|sbo|sbr|sc|scb|scl|scr|scroll|scrollbind|scrolljump|scrolloff|scrollopt|scs|sect|sections|secure|sel|selection|selectmode|sessionoptions|sft|sh|shcf|shell|shellcmdflag|shellpipe|shellquote|shellredir|shellslash|shelltemp|shelltype|shellxescape|shellxquote|shiftround|shiftwidth|shm|shortmess|shortname|showbreak|showcmd|showfulltag|showmatch|showmode|showtabline|shq|si|sidescroll|sidescrolloff|signcolumn|siso|sj|slm|sm|smartcase|smartindent|smarttab|smc|smd|sn|so|softtabstop|sol|sp|spc|spell|spellcapcheck|spellfile|spelllang|spellsuggest|spf|spl|splitbelow|splitright|spr|sps|sr|srr|ss|ssl|ssop|st|sta|stal|startofline|statusline|stl|stmp|sts|su|sua|suffixes|suffixesadd|sw|swapfile|swapsync|swb|swf|switchbuf|sws|sxe|sxq|syn|synmaxcol|syntax|t_8b|t_8f|t_AB|t_AF|t_al|t_AL|t_bc|t_cd|t_ce|t_Ce|t_cl|t_cm|t_Co|t_cs|t_Cs|t_CS|t_CV|t_da|t_db|t_dl|t_DL|t_EI|t_F1|t_F2|t_F3|t_F4|t_F5|t_F6|t_F7|t_F8|t_F9|t_fs|t_IE|t_IS|t_k1|t_K1|t_k2|t_k3|t_K3|t_k4|t_K4|t_k5|t_K5|t_k6|t_K6|t_k7|t_K7|t_k8|t_K8|t_k9|t_K9|t_KA|t_kb|t_kB|t_KB|t_KC|t_kd|t_kD|t_KD|t_ke|t_KE|t_KF|t_KG|t_kh|t_KH|t_kI|t_KI|t_KJ|t_KK|t_kl|t_KL|t_kN|t_kP|t_kr|t_ks|t_ku|t_le|t_mb|t_md|t_me|t_mr|t_ms|t_nd|t_op|t_RB|t_RI|t_RV|t_Sb|t_se|t_Sf|t_SI|t_so|t_sr|t_SR|t_te|t_ti|t_ts|t_u7|t_ue|t_us|t_ut|t_vb|t_ve|t_vi|t_vs|t_WP|t_WS|t_xn|t_xs|t_ZH|t_ZR|ta|tabline|tabpagemax|tabstop|tag|tagbsearch|tagcase|taglength|tagrelative|tags|tagstack|tal|tb|tbi|tbidi|tbis|tbs|tc|tcldll|tenc|term|termbidi|termencoding|termguicolors|terse|textauto|textmode|textwidth|tf|tgc|tgst|thesaurus|tildeop|timeout|timeoutlen|title|titlelen|titleold|titlestring|tl|tm|to|toolbar|toolbariconsize|top|tpm|tr|ts|tsl|tsr|ttimeout|ttimeoutlen|ttm|tty|ttybuiltin|ttyfast|ttym|ttymouse|ttyscroll|ttytype|tw|tx|uc|udf|udir|ul|undodir|undofile|undolevels|undoreload|updatecount|updatetime|ur|ut|vb|vbs|vdir|ve|verbose|verbosefile|vfile|vi|viewdir|viewoptions|viminfo|virtualedit|visualbell|vop|wa|wak|warn|wb|wc|wcm|wd|weirdinvert|wfh|wfw|wh|whichwrap|wi|wic|wig|wildchar|wildcharm|wildignore|wildignorecase|wildmenu|wildmode|wildoptions|wim|winaltkeys|window|winfixheight|winfixwidth|winheight|winminheight|winminwidth|winwidth|wiv|wiw|wm|wmh|wmnu|wmw|wop|wrap|wrapmargin|wrapscan|write|writeany|writebackup|writedelay|ws|ww)\\b"
1091
+ },
1092
+ "vimPattern": {
1093
+ "name": "support.function.vimPattern.viml",
1094
+ "match": "\\b(end|skip|start)\\b"
1095
+ },
1096
+ "vimStdPlugin": {
1097
+ "name": "support.class.stdplugin.viml",
1098
+ "match": "\\b(DiffOrig|Man|N|Next|P|Print|S|TOhtml|XMLent|XMLns)\\b"
1099
+ },
1100
+ "vimSynCase": {
1101
+ "name": "support.function.vimSynCase.viml",
1102
+ "match": "\\b(ignore|match)\\b"
1103
+ },
1104
+ "vimSynType": {
1105
+ "name": "support.function.vimSynType.viml",
1106
+ "match": "\\b(case|clear|cluster|enable|include|iskeyword|keyword|list|manual|match|off|on|region|reset|sync)\\b"
1107
+ },
1108
+ "vimSyncC": {
1109
+ "name": "support.function.vimSyncC.viml",
1110
+ "match": "\\b(ccomment|clear|fromstart)\\b"
1111
+ },
1112
+ "vimSyncLinecont": {
1113
+ "name": "support.function.vimSyncLinecont.viml",
1114
+ "match": "\\b(linecont)\\b"
1115
+ },
1116
+ "vimSyncMatch": {
1117
+ "name": "support.function.vimSyncMatch.viml",
1118
+ "match": "\\b(match)\\b"
1119
+ },
1120
+ "vimSyncNone": {
1121
+ "name": "support.function.vimSyncNone.viml",
1122
+ "match": "\\b(NONE)\\b"
1123
+ },
1124
+ "vimSyncRegion": {
1125
+ "name": "support.function.vimSyncRegion.viml",
1126
+ "match": "\\b(region)\\b"
1127
+ },
1128
+ "vimUserAttrbCmplt": {
1129
+ "name": "support.function.vimUserAttrbCmplt.viml",
1130
+ "match": "\\b(augroup|behave|buffer|color|command|compiler|cscope|custom|customlist|dir|environment|event|expression|file|file_in_path|filetype|function|help|highlight|history|locale|mapping|menu|option|packadd|shellcmd|sign|syntax|syntime|tag|tag_listfiles|user|var)\\b"
1131
+ },
1132
+ "vimUserAttrbKey": {
1133
+ "name": "support.function.vimUserAttrbKey.viml",
1134
+ "match": "\\b(bang?|bar|com|complete|cou|count|n|nargs|ra|range|re|register)\\b"
1135
+ },
1136
+ "vimUserCommand": {
1137
+ "name": "support.function.vimUserCommand.viml",
1138
+ "match": "\\b(com|command)\\b"
220
1139
  }
221
- },
222
- "scopeName": "source.viml",
223
- "uuid": "0555180C-1AF8-4D94-9937-4434C2AE07E5"
1140
+ }
224
1141
  }