-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Clojure (Sublimed).sublime-syntax
783 lines (698 loc) · 22.8 KB
/
Clojure (Sublimed).sublime-syntax
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
%YAML 1.2
---
# https://www.sublimetext.com/docs/syntax.html
name: Clojure (Sublimed)
file_extensions: [clj, cljs, cljc, cljx, boot, bb, edn]
scope: source.clojure
variables:
wsb: '(?<=^|[\s,()\[\]{}~''`"^@]|#_)'
wse: '(?=$|[\s,()\[\]{}";])'
nwse: '[^\s,()\[\]{}";]'
sym_head: '[\p{Alpha}*!_?$%&=<>.|]'
sym_head_lax: '[\p{Alpha}*!_?$%&=<>.|''\-+#:]'
sym_body: '[\p{Alpha}*!_?$%&=<>.|''\-+#:0-9]'
ns_symbol: '(?:[\-+.]|[\-+.]{{sym_head_lax}}{{sym_body}}*|{{sym_head}}{{sym_body}}*)'
symbol: '(?:/|{{ns_symbol}})'
kw: '\p{Alpha}*!_?$%&=<>''\-+.#0-9'
regexp_name: '[a-zA-Z][a-zA-Z0-9]*'
contexts:
main:
- include: skip_forms
- match: (?=\S)
push:
- include: forms
forms:
- include: skip_forms
- include: wrap_forms
- include: normal_forms
- include: stray_bracket
deep_forms:
- include: skip_forms
- include: deep_normal_forms
- include: stray_bracket
# SKIP FORMS
skip_forms:
- include: comma
- include: deref
- include: var
- include: line_comment
- include: reader_comment
- include: metadata
comma:
- match: ','
scope: punctuation.definition.comma.clojure
deref:
- match: '@'
scope: keyword.operator.deref.clojure
var:
- match: '#'''
scope: punctuation.definition.var.clojure
line_comment:
- match: '(;+).*$'
scope: comment.line.clojure
captures:
1: punctuation.definition.comment.line.clojure
reader_comment:
- match: '#_'
scope: punctuation.definition.comment.reader.clojure
push:
- meta_scope: comment.reader.clojure
- include: forms
metadata:
- match: '\^'
scope: punctuation.definition.metadata.clojure
push:
- meta_scope: meta.metadata.clojure
- include: forms
# WRAP FORMS
wrap_forms:
- include: quote
- include: syntax_quote
- include: syntax_unquote
quote:
- match: ''''
scope: keyword.operator.quote.clojure
push:
- meta_scope: meta.quoted.clojure
- include: deep_forms
syntax_quote:
- match: '`'
scope: keyword.operator.quote.syntax.clojure
push:
- meta_scope: meta.quoted.syntax.clojure
- include: deep_forms
syntax_unquote:
- match: '~@?'
scope: keyword.operator.unquote.clojure
push:
- meta_scope: meta.unquoted.clojure
- include: deep_forms
# NORMAL FORMS
normal_forms:
- include: character
- include: string
- include: regexp
- include: constant
- include: keyword
- include: integer
- include: float
- include: ratio
- include: symbol_unused
- include: symbol
- include: list
- include: anonymous_fn
- include: reader_conditional
- include: vector
- include: map
- include: set
- include: tag
character:
- match: '{{wsb}}((\\)(u\h{4}|o[0-3]?[0-7]{1,2}|newline|tab|space|backspace|formfeed|return|[^\s]){{wse}}|((\\){{nwse}}*))'
scope: constant.character.clojure
captures:
2: punctuation.definition.character.begin.clojure
4: invalid.illegal.character.clojure
5: punctuation.definition.character.begin.clojure
pop: 1
string:
- match: '{{wsb}}"'
scope: punctuation.definition.string.begin.clojure
push:
- meta_scope: string.quoted.double.clojure
- match: '(\\)(u\h{4}|b|t|n|f|r|"|''|\\|[0-3]?[0-7]{1,2})|((\\).)'
scope: constant.character.escape.clojure
captures:
1: punctuation.definition.character.escape.begin.clojure
3: invalid.illegal.escape.string.clojure
4: punctuation.definition.character.escape.begin.clojure
- match: '"'
scope: punctuation.definition.string.end.clojure
pop: 2
regexp_quote:
- match: '\\Q'
scope: punctuation.section.quotation.begin.clojure
push:
- meta_content_scope: constant.character.escape.clojure
- match: '\\"'
- match: '(?=")'
pop: 1
- match: '\\E'
scope: punctuation.section.quotation.end.clojure
pop: 1
regexp_shared:
- match: '(\\)(\\|0[0-3]?[0-7]{1,2}|x\h{2}|u\h{4}|x\{1?\h{1,5}\}|\N\{[a-zA-Z0-9\- ]+\}|[tnrfae]|c[A-Z]|[dDhHsSvVwW]|p\{[a-zA-Z]+\}|b\{g\}|[bBAGZz]|[RX]|[0-9]+|k<{{regexp_name}}>|[^a-zA-Z0-9])|((\\).)'
scope: constant.character.escape.clojure
captures:
1: punctuation.definition.character.escape.begin.clojure
3: invalid.illegal.escape.regexp.clojure
4: punctuation.definition.character.escape.begin.clojure
- match: '"'
scope: punctuation.definition.string.end.clojure
pop: 2
- match: '(\[)(\^)?(-)?'
captures:
1: punctuation.section.brackets.begin.clojure
2: keyword.operator.negation.regexp.clojure
push:
- match: '(?=")'
pop: 1
- match: '\]'
scope: punctuation.section.brackets.end.clojure
pop: 1
- match: '-(?!\])'
scope: keyword.operator.range.regexp.clojure
- match: '&&'
scope: keyword.operator.intersection.regexp.clojure
- include: regexp_shared
- match: '(?:[?*+]|\{\d+(?:,(?:\d+)?)?\})[?+]?'
scope: keyword.operator.quantifier.regexp.clojure
regexp_group:
- include: regexp_quote
- include: regexp_shared
- match: '\|'
scope: keyword.operator.union.regexp.clojure
- match: '(\()(\?(<{{regexp_name}}>|:|=|!|<=|<!|>|[idmsux]*(-[idmsux]+)?:|[idmsuxU]*(-[idmsuxU]+)?(?!:)))?'
captures:
1: punctuation.section.parens.begin.clojure
2: keyword.operator.special.regexp.clojure
push:
- match: '(?=")'
pop: 1
- match: '\)'
scope: punctuation.section.parens.end.clojure
pop: 1
- include: regexp_group
- match: '[\)]'
scope: invalid.illegal.stray-bracket-end
regexp:
- match: '{{wsb}}#"'
scope: punctuation.definition.string.begin.clojure
push:
- meta_scope: string.regexp.clojure
- include: regexp_group
constant:
- match: '{{wsb}}(nil|true|false){{wse}}'
scope: constant.language.clojure
pop: 1
keyword:
- match: '{{wsb}}(::?)([{{kw}}][{{kw}}:]*[{{kw}}]|[{{kw}}])(/)([{{kw}}:/]*[{{kw}}]|[{{kw}}]|/+){{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
2: meta.namespace.keyword.clojure
3: punctuation.definition.namespace.clojure
pop: 1
- match: '{{wsb}}(::?)([{{kw}}][{{kw}}:]*[{{kw}}]|[{{kw}}]){{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
pop: 1
- match: '{{wsb}}(:)/{{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
pop: 1
- match: '{{wsb}}(:)/(//+){{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
2: punctuation.definition.namespace.clojure
pop: 1
integer:
- match: '{{wsb}}[+-]?(?:0[xX][0-9A-Fa-f]+|0[1-7]+|[1-9][0-9]*|[1-9][0-9]?[rR][0-9A-Za-z]+|0)(N)?{{wse}}'
scope: constant.numeric.integer.clojure
captures:
1: punctuation.definition.integer.precision.clojure
pop: 1
float:
- match: '{{wsb}}[+-]?(?:0|[1-9][0-9]*)(?:(M)|\.[0-9]*(M)?|[eE][+-]?[0-9]+(M)?|\.[0-9]*[eE][+-]?[0-9]+(M)?){{wse}}'
scope: constant.numeric.float.clojure
captures:
1: punctuation.definition.float.precision.clojure
2: punctuation.definition.float.precision.clojure
3: punctuation.definition.float.precision.clojure
4: punctuation.definition.float.precision.clojure
pop: 1
- match: '{{wsb}}(##Inf|##-Inf|##NaN){{wse}}'
scope: constant.numeric.float.clojure
pop: 1
ratio:
- match: '{{wsb}}[+-]?(0|[1-9][0-9]*)/[1-9][0-9]*{{wse}}'
scope: constant.numeric.ratio.clojure
pop: 1
symbol_def:
- match: '{{wsb}}(?:ns|(?=def){{symbol}}|({{ns_symbol}})(/)(?=def){{symbol}}){{wse}}'
scope: source.symbol.def.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 1
push: list_second
symbol_name:
- match: '{{wsb}}(?:{{symbol}}|({{ns_symbol}})(/)(?:/|{{sym_body}})+){{wse}}'
scope: source.symbol.clojure entity.name.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 1
push: list_rest
symbol_unused:
- match: '{{wsb}}(?:(?=_){{symbol}}|({{ns_symbol}})(/)(?=_)(?:/|{{sym_body}})*){{wse}}'
scope: source.symbol.unused.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 1
symbol:
- match: '{{wsb}}(?:{{symbol}}|({{ns_symbol}})(/)(?:/|{{sym_body}})+){{wse}}'
scope: source.symbol.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 1
list:
- match: '(?=\()'
branch_point: open_parens
branch:
- list_paren
- form_comment_paren
list_paren:
- match: '\('
scope: punctuation.section.parens.begin.clojure
set: list_first
list_first:
- meta_scope: meta.parens.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 2
- include: comma
- include: line_comment
- include: reader_comment
- include: metadata
- match: 'comment'
fail: open_parens
- include: symbol_def
- match: '(?=\S)'
set: list_rest
list_second:
- meta_scope: meta.parens.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 2
- include: comma
- include: line_comment
- include: reader_comment
- include: metadata
- include: symbol_name
- match: '(?=\S)'
set: list_rest
list_rest:
- meta_scope: meta.parens.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 2
- include: main
form_comment_paren:
- match: '\('
scope: punctuation.section.parens.begin.clojure
set: form_comment_first
form_comment_first:
- meta_scope: comment.form.clojure
- include: comma
- include: line_comment
- include: reader_comment
- include: metadata
- match: 'comment'
set: form_comment_rest
- match: \)
fail: open_parens
- match: '(?=\S)'
fail: open_parens
form_comment_rest:
- meta_scope: comment.form.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 2
- include: main
anonymous_fn:
- match: '(#)(\()'
captures:
1: punctuation.definition.anon_fn.clojure
scope: punctuation.section.parens.begin.clojure
push:
- meta_scope: meta.parens.clojure meta.function.anon.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 2
- include: main
reader_conditional:
- match: '(#\?@?)\s*\('
captures:
1: punctuation.definition.reader_conditional.clojure
scope: punctuation.section.parens.begin.clojure
push:
- meta_scope: meta.parens.clojure meta.reader_conditional.clojure
- match: '\)'
scope: punctuation.section.parens.end.clojure
pop: 2
- include: main
vector:
- match: \[
scope: punctuation.section.brackets.begin.clojure
push:
- meta_scope: meta.brackets.clojure
- match: \]
scope: punctuation.section.brackets.end.clojure
pop: 2
- include: main
map:
- match: '\{'
scope: punctuation.section.braces.begin.clojure
push:
- meta_scope: meta.braces.clojure
- match: \}
scope: punctuation.section.braces.end.clojure
pop: 2
- include: main
set:
- match: '#\{'
scope: punctuation.section.braces.begin.clojure
push:
- meta_scope: meta.braces.clojure
- match: \}
scope: punctuation.section.braces.end.clojure
pop: 2
- include: main
tag:
- match: '{{wsb}}(#inst\s*"\d\d\d\d(?:-[01]\d(?:-[0123]\d(?:T[012]\d(?::[012345]\d(?::[0123456]\d(?:[.]\d{1,9})?)?)?)?)?)?(?:Z|[-+][012]\d:[012345]\d)?"|(#inst\s*"[^"]*")){{wse}}'
scope: constant.other.instant.clojure
captures:
2: invalid.illegal.instant.clojure
pop: 1
- match: '{{wsb}}(#uuid\s*"\h{8}-\h{4}-\h{4}-\h{4}-\h{12}"|(#uuid\s*"[^"]*")){{wse}}'
scope: constant.other.uuid.clojure
captures:
2: invalid.illegal.uuid.clojure
pop: 1
- match: '{{wsb}}#(?![_#{])(?:{{symbol}}|{{ns_symbol}}(/){{symbol}}){{wse}}'
scope: storage.type.tag.clojure
pop: 1
# DEEP FORMS
deep_normal_forms:
- include: deep_character
- include: deep_string
- include: deep_regexp
- include: deep_constant
- include: deep_keyword
- include: deep_integer
- include: deep_float
- include: deep_ratio
- include: deep_symbol_unused
- include: deep_symbol
- include: deep_var
- include: deep_list
- include: deep_anonymous_fn
- include: deep_reader_conditional
- include: deep_vector
- include: deep_map
- include: deep_set
- include: deep_tag
deep_character:
- match: '{{wsb}}((\\)(u\h{4}|o[0-3]?[0-7]{1,2}|newline|tab|space|backspace|formfeed|return|[^\s]){{wse}}|((\\){{nwse}}*))'
scope: constant.character.clojure
captures:
2: punctuation.definition.character.begin.clojure
4: invalid.illegal.character.clojure
5: punctuation.definition.character.begin.clojure
pop: 2
deep_string:
- match: '{{wsb}}"'
scope: punctuation.definition.string.begin.clojure
push:
- meta_scope: string.quoted.double.clojure
- match: '(\\)(u\h{4}|b|t|n|f|r|"|''|\\|[0-3]?[0-7]{1,2})|((\\).)'
scope: constant.character.escape.clojure
captures:
1: punctuation.definition.character.escape.begin.clojure
3: invalid.illegal.escape.string.clojure
4: punctuation.definition.character.escape.begin.clojure
- match: '"'
scope: punctuation.definition.string.end.clojure
pop: 3
deep_regexp_shared:
- match: '(\\)(\\|0[0-3]?[0-7]{1,2}|x\h{2}|u\h{4}|x\{1?\h{1,5}\}|\N\{[a-zA-Z0-9\- ]+\}|[tnrfae]|c[A-Z]|[dDhHsSvVwW]|p\{[a-zA-Z]+\}|b\{g\}|[bBAGZz]|[RX]|[0-9]+|k<{{regexp_name}}>|[^a-zA-Z0-9])|((\\).)'
scope: constant.character.escape.clojure
captures:
1: punctuation.definition.character.escape.begin.clojure
3: invalid.illegal.escape.regexp.clojure
4: punctuation.definition.character.escape.begin.clojure
- match: '"'
scope: punctuation.definition.string.end.clojure
pop: 3
- match: '(\[)(\^)?(-)?'
captures:
1: punctuation.section.brackets.begin.clojure
2: keyword.operator.negation.regexp.clojure
push:
- match: '(?=")'
pop: 1
- match: '\]'
scope: punctuation.section.brackets.end.clojure
pop: 1
- match: '-(?!\])'
scope: keyword.operator.range.regexp.clojure
- match: '&&'
scope: keyword.operator.intersection.regexp.clojure
- include: regexp_shared
- match: '(?:[?*+]|\{\d+(?:,(?:\d+)?)?\})[?+]?'
scope: keyword.operator.quantifier.regexp.clojure
deep_regexp_group:
- include: regexp_quote
- include: deep_regexp_shared
- match: '\|'
scope: keyword.operator.union.regexp.clojure
- match: '(\()(\?(<{{regexp_name}}>|:|=|!|<=|<!|>|[idmsux]*(-[idmsux]+)?:|[idmsuxU]*(-[idmsuxU]+)?(?!:)))?'
captures:
1: punctuation.section.parens.begin.clojure
2: keyword.operator.special.regexp.clojure
push:
- match: '(?=")'
pop: 1
- match: '\)'
scope: punctuation.section.parens.end.clojure
pop: 1
- include: deep_regexp_group
- match: '[\)]'
scope: invalid.illegal.stray-bracket-end
deep_regexp:
- match: '{{wsb}}#"'
scope: punctuation.definition.string.begin.clojure
push:
- meta_scope: string.regexp.clojure
- include: deep_regexp_group
deep_constant:
- match: '{{wsb}}(nil|true|false){{wse}}'
scope: constant.language.clojure
pop: 2
deep_keyword:
- match: '{{wsb}}(::?)([{{kw}}][{{kw}}:]*[{{kw}}]|[{{kw}}])(/)([{{kw}}:/]*[{{kw}}]|[{{kw}}]|/+){{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
2: meta.namespace.keyword.clojure
3: punctuation.definition.namespace.clojure
pop: 2
- match: '{{wsb}}(::?)([{{kw}}][{{kw}}:]*[{{kw}}]|[{{kw}}]){{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
pop: 2
- match: '{{wsb}}(:)/{{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
pop: 2
- match: '{{wsb}}(:)/(//+){{wse}}'
scope: constant.other.keyword.clojure
captures:
1: punctuation.definition.keyword.begin.clojure
2: punctuation.definition.namespace.clojure
pop: 2
deep_integer:
- match: '{{wsb}}[+-]?(?:0[xX][0-9A-Fa-f]+|0[1-7]+|[1-9][0-9]*|[1-9][0-9]?[rR][0-9A-Za-z]+|0)(N)?{{wse}}'
scope: constant.numeric.integer.clojure
captures:
1: punctuation.definition.integer.precision.clojure
pop: 2
deep_float:
- match: '{{wsb}}[+-]?(?:0|[1-9][0-9]*)(?:(M)|\.[0-9]*(M)?|[eE][+-]?[0-9]+(M)?|\.[0-9]*[eE][+-]?[0-9]+(M)?){{wse}}'
scope: constant.numeric.float.clojure
captures:
1: punctuation.definition.float.precision.clojure
2: punctuation.definition.float.precision.clojure
3: punctuation.definition.float.precision.clojure
4: punctuation.definition.float.precision.clojure
pop: 2
- match: '{{wsb}}(##Inf|##-Inf|##NaN){{wse}}'
scope: constant.numeric.float.clojure
pop: 2
deep_ratio:
- match: '{{wsb}}[+-]?(0|[1-9][0-9]*)/[1-9][0-9]*{{wse}}'
scope: constant.numeric.ratio.clojure
pop: 2
deep_symbol_def:
- match: '{{wsb}}(?:ns|(?=def){{symbol}}|({{ns_symbol}})(/)(?=def){{symbol}}){{wse}}'
scope: source.symbol.def.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 1
push: deep_list_second
deep_symbol_name:
- match: '{{wsb}}(?:{{symbol}}|({{ns_symbol}})(/)(?:/|{{sym_body}})+){{wse}}'
scope: source.symbol.clojure entity.name.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 1
push: deep_list_rest
deep_symbol_unused:
- match: '{{wsb}}(?:(?=_){{symbol}}|({{ns_symbol}})(/)(?=_)(?:/|{{sym_body}})*){{wse}}'
scope: source.symbol.unused.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 2
deep_symbol:
- match: '{{wsb}}(?:{{symbol}}|({{ns_symbol}})(/)(?:/|{{sym_body}})+){{wse}}'
scope: source.symbol.clojure
captures:
1: meta.namespace.symbol.clojure
2: punctuation.definition.namespace.clojure
pop: 2
deep_list:
- match: '(?=\()'
branch_point: deep_open_parens
branch:
- deep_list_paren
- deep_form_comment_paren
deep_list_paren:
- match: '\('
scope: punctuation.section.parens.begin.clojure
set: deep_list_first
deep_list_first:
- meta_scope: meta.parens.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 3
- include: skip_forms
- match: 'comment'
fail: deep_open_parens
- include: deep_symbol_def
- match: '(?=\S)'
set: deep_list_rest
deep_list_second:
- meta_scope: meta.parens.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 3
- include: skip_forms
- include: deep_symbol_name
- match: '(?=\S)'
set: deep_list_rest
deep_list_rest:
- meta_scope: meta.parens.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 3
- include: main
deep_form_comment_paren:
- match: '\('
scope: punctuation.section.parens.begin.clojure
set: form_comment_first
deep_form_comment_first:
- meta_scope: comment.form.clojure
- include: skip_forms
- match: 'comment'
set: deep_form_comment_rest
- match: \)
fail: deep_open_parens
- match: '(?=\S)'
fail: deep_open_parens
deep_form_comment_rest:
- meta_scope: comment.form.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 3
- include: main
deep_anonymous_fn:
- match: '(#)(\()'
captures:
1: punctuation.definition.anon_fn.clojure
scope: punctuation.section.parens.begin.clojure
push:
- meta_scope: meta.parens.clojure meta.function.anon.clojure
- match: \)
scope: punctuation.section.parens.end.clojure
pop: 3
- include: main
deep_reader_conditional:
- match: '(#\?@?)\s*\('
captures:
1: punctuation.definition.reader_conditional.clojure
scope: punctuation.section.parens.begin.clojure
push:
- meta_scope: meta.parens.clojure meta.reader_conditional.clojure
- match: '\)'
scope: punctuation.section.parens.end.clojure
pop: 3
- include: main
deep_vector:
- match: \[
scope: punctuation.section.brackets.begin.clojure
push:
- meta_scope: meta.brackets.clojure
- match: \]
scope: punctuation.section.brackets.end.clojure
pop: 3
- include: main
deep_map:
- match: '\{'
scope: punctuation.section.braces.begin.clojure
push:
- meta_scope: meta.braces.clojure
- match: \}
scope: punctuation.section.braces.end.clojure
pop: 3
- include: main
deep_set:
- match: '#\{'
scope: punctuation.section.braces.begin.clojure
push:
- meta_scope: meta.braces.clojure
- match: \}
scope: punctuation.section.braces.end.clojure
pop: 3
- include: main
deep_tag:
- match: '{{wsb}}(#inst\s*"\d\d\d\d(?:-[01]\d(?:-[0123]\d(?:T[012]\d(?::[012345]\d(?::[0123456]\d(?:[.]\d{1,9})?)?)?)?)?)?(?:Z|[-+][012]\d:[012345]\d)?"|(#inst\s*"[^"]*")){{wse}}'
scope: constant.other.instant.clojure
captures:
2: invalid.illegal.instant.clojure
pop: 2
- match: '{{wsb}}(#uuid\s*"\h{8}-\h{4}-\h{4}-\h{4}-\h{12}"|(#uuid\s*"[^"]*")){{wse}}'
scope: constant.other.uuid.clojure
captures:
2: invalid.illegal.uuid.clojure
pop: 2
- match: '{{wsb}}#(?![_#{])(?:{{symbol}}|{{ns_symbol}}(/){{symbol}}){{wse}}'
scope: storage.type.tag.clojure
pop: 2
# ERRORS
stray_bracket:
- match: '[\]\)\}]'
scope: invalid.illegal.stray-bracket-end
pop: 1
fail:
- match: '(?=\S)'
pop: 1