aboutsummaryrefslogtreecommitdiff
path: root/syntax/nix.sublime-syntax
blob: 419a5c89f6b5a5ac199425ae14658e77ac34f6d9 (plain)
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
%YAML 1.2
---
# http://www.sublimetext.com/docs/3/syntax.html
name: Nix
file_extensions:
  - nix
scope: source.nix
contexts:
  main:
    - include: expression
  comment:
    - match: '/\*([^*]|\*[^\/])*'
      push:
        - meta_scope: comment.block.nix
        - match: \*\/
          pop: true
        - include: comment-remark
    - match: '\#'
      push:
        - meta_scope: comment.line.number-sign.nix
        - match: $
          pop: true
        - include: comment-remark
  attribute-bind:
    - include: attribute-name
    - include: attribute-bind-from-equals
  attribute-bind-from-equals:
    - match: \=
      captures:
        0: keyword.operator.bind.nix
      push:
        - match: \;
          captures:
            0: punctuation.terminator.bind.nix
          pop: true
        - include: expression
  attribute-inherit:
    - match: \binherit\b
      captures:
        0: keyword.other.inherit.nix
      push:
        - match: \;
          captures:
            0: punctuation.terminator.inherit.nix
          pop: true
        - match: \(
          captures:
            0: punctuation.section.function.arguments.nix
          push:
            - match: (?=\;)
              pop: true
            - match: \)
              captures:
                0: punctuation.section.function.arguments.nix
              push:
                - match: (?=\;)
                  pop: true
                - include: bad-reserved
                - include: attribute-name-single
                - include: others
            - include: expression
        - match: '(?=[a-zA-Z\_])'
          push:
            - match: (?=\;)
              pop: true
            - include: bad-reserved
            - include: attribute-name-single
            - include: others
        - include: others
  attribute-name:
    - match: '\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*'
      scope: entity.other.attribute-name.multipart.nix
    - match: \.
    - include: string-quoted
    - include: interpolation
  attribute-name-single:
    - match: '\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*'
      scope: entity.other.attribute-name.single.nix
  attrset-contents:
    - include: attribute-inherit
    - include: bad-reserved
    - include: attribute-bind
    - include: others
  attrset-definition:
    - match: '(?=\{)'
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - match: '(\{)'
          captures:
            0: punctuation.definition.attrset.nix
          push:
            - match: '(\})'
              captures:
                0: punctuation.definition.attrset.nix
              pop: true
            - include: attrset-contents
        - match: '(?<=\})'
          push:
            - match: '(?=([\])};,]|\b(else|then)\b))'
              pop: true
            - include: expression-cont
  attrset-definition-brace-opened:
    - match: '(?<=\})'
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
    - match: (?=.?)
      push:
        - match: '\}'
          captures:
            0: punctuation.definition.attrset.nix
          pop: true
        - include: attrset-contents
  attrset-for-sure:
    - match: (?=\brec\b)
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - match: \brec\b
          captures:
            0: keyword.other.nix
          push:
            - match: '(?=\{)'
              pop: true
            - include: others
        - include: attrset-definition
        - include: others
    - match: '(?=\{\s*(\}|[^,?]*(=|;)))'
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: attrset-definition
        - include: others
  attrset-or-function:
    - match: '\{'
      captures:
        0: punctuation.definition.attrset-or-function.nix
      push:
        - match: '(?=([\])};]|\b(else|then)\b))'
          pop: true
        - match: '(?=(\s*\}|\"|\binherit\b|\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*(\s*\.|\s*=[^=])|\$\{[a-zA-z0-9\_\''\-]+\}(\s*\.|\s*=[^=])))'
          push:
            - match: '(?=([\])};,]|\b(else|then)\b))'
              pop: true
            - include: attrset-definition-brace-opened
        - match: '(?=(\.\.\.|\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*\s*[,?]))'
          push:
            - match: '(?=([\])};,]|\b(else|then)\b))'
              pop: true
            - include: function-definition-brace-opened
        - include: bad-reserved
        - match: '\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*'
          captures:
            0: variable.parameter.function.maybe.nix
          push:
            - match: '(?=([\])};]|\b(else|then)\b))'
              pop: true
            - match: (?=\.)
              push:
                - match: '(?=([\])};,]|\b(else|then)\b))'
                  pop: true
                - include: attrset-definition-brace-opened
            - match: \s*(\,)
              captures:
                1: keyword.operator.nix
              push:
                - match: '(?=([\])};,]|\b(else|then)\b))'
                  pop: true
                - include: function-definition-brace-opened
            - match: (?=\=)
              push:
                - match: '(?=([\])};,]|\b(else|then)\b))'
                  pop: true
                - include: attribute-bind-from-equals
                - include: attrset-definition-brace-opened
            - match: (?=\?)
              push:
                - match: '(?=([\])};,]|\b(else|then)\b))'
                  pop: true
                - include: function-parameter-default
                - match: \,
                  captures:
                    0: keyword.operator.nix
                  push:
                    - match: '(?=([\])};,]|\b(else|then)\b))'
                      pop: true
                    - include: function-definition-brace-opened
            - include: others
        - include: others
  bad-reserved:
    - match: '(?<![\w''-])(if|then|else|assert|with|let|in|rec|inherit)(?![\w''-])'
      scope: invalid.illegal.reserved.nix
  comment-remark:
    - match: (TODO|FIXME|BUG|\!\!\!):?
      captures:
        1: markup.bold.comment.nix
  constants:
    - match: \b(builtins|true|false|null)\b
      captures:
        0: constant.language.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
    - match: \b(scopedImport|import|isNull|abort|throw|baseNameOf|dirOf|removeAttrs|map|toString|derivationStrict|derivation)\b
      captures:
        0: support.function.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
    - match: '\b[0-9]+\b'
      captures:
        0: constant.numeric.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
  expression:
    - include: parens-and-cont
    - include: list-and-cont
    - include: string
    - include: interpolation
    - include: with-assert
    - include: function-for-sure
    - include: attrset-for-sure
    - include: attrset-or-function
    - include: let
    - include: if
    - include: operator-unary
    - include: constants
    - include: bad-reserved
    - include: parameter-name-and-cont
    - include: others
  expression-cont:
    - match: (?=.?)
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: parens
        - include: list
        - include: string
        - include: interpolation
        - include: function-for-sure
        - include: attrset-for-sure
        - include: attrset-or-function
        - match: '(\bor\b|\.|==|!=|!|\<\=|\<|\>\=|\>|&&|\|\||-\>|//|\?|\+\+|-|\*|/(?=([^*]|$))|\+)'
          scope: keyword.operator.nix
        - include: constants
        - include: bad-reserved
        - include: parameter-name
        - include: others
  function-body:
    - match: '(@\s*([a-zA-Z\_][a-zA-Z0-9\_\''\-]*)\s*)?(\:)'
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression
  function-body-from-colon:
    - match: (\:)
      captures:
        0: punctuation.definition.function.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression
  function-contents:
    - include: bad-reserved
    - include: function-parameter
    - include: others
  function-definition:
    - match: (?=.?)
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: function-body-from-colon
        - match: (?=.?)
          push:
            - match: (?=\:)
              pop: true
            - match: '(\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*)'
              captures:
                0: variable.parameter.function.4.nix
              push:
                - match: (?=\:)
                  pop: true
                - match: \@
                  push:
                    - match: (?=\:)
                      pop: true
                    - include: function-header-until-colon-no-arg
                    - include: others
                - include: others
            - match: '(?=\{)'
              push:
                - match: (?=\:)
                  pop: true
                - include: function-header-until-colon-with-arg
        - include: others
  function-definition-brace-opened:
    - match: (?=.?)
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: function-body-from-colon
        - match: (?=.?)
          push:
            - match: (?=\:)
              pop: true
            - include: function-header-close-brace-with-arg
            - match: (?=.?)
              push:
                - match: '(?=\})'
                  pop: true
                - include: function-contents
        - include: others
  function-for-sure:
    - match: '(?=(\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*\s*[:@]|\{[^}]*\}\s*:|\{[^#}"''/=]*[,\?]))'
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: function-definition
  function-header-close-brace-no-arg:
    - match: '\}'
      captures:
        0: punctuation.definition.entity.function.nix
      push:
        - match: (?=\:)
          pop: true
        - include: others
  function-header-close-brace-with-arg:
    - match: '\}'
      captures:
        0: punctuation.definition.entity.function.nix
      push:
        - match: (?=\:)
          pop: true
        - include: function-header-terminal-arg
        - include: others
  function-header-open-brace:
    - match: '\{'
      captures:
        0: punctuation.definition.entity.function.2.nix
      push:
        - match: '(?=\})'
          pop: true
        - include: function-contents
  function-header-terminal-arg:
    - match: (?=@)
      push:
        - match: (?=\:)
          pop: true
        - match: \@
          push:
            - match: (?=\:)
              pop: true
            - match: '(\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*)'
              push:
                - meta_scope: variable.parameter.function.3.nix
                - match: (?=\:)
                  pop: true
            - include: others
        - include: others
  function-header-until-colon-no-arg:
    - match: '(?=\{)'
      push:
        - match: (?=\:)
          pop: true
        - include: function-header-open-brace
        - include: function-header-close-brace-no-arg
  function-header-until-colon-with-arg:
    - match: '(?=\{)'
      push:
        - match: (?=\:)
          pop: true
        - include: function-header-open-brace
        - include: function-header-close-brace-with-arg
  function-parameter:
    - match: (\.\.\.)
      push:
        - meta_scope: keyword.operator.nix
        - match: '(,|(?=\}))'
          pop: true
        - include: others
    - match: '\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*'
      captures:
        0: variable.parameter.function.1.nix
      push:
        - match: '(,|(?=\}))'
          captures:
            0: keyword.operator.nix
          pop: true
        - include: whitespace
        - include: comment
        - include: function-parameter-default
        - include: expression
    - include: others
  function-parameter-default:
    - match: \?
      captures:
        0: keyword.operator.nix
      push:
        - match: "(?=[,}])"
          pop: true
        - include: expression
  if:
    - match: (?=\bif\b)
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - match: \bif\b
          captures:
            0: keyword.other.nix
          push:
            - match: \bth(?=en\b)
              captures:
                0: keyword.other.nix
              pop: true
            - include: expression
        - match: (?<=th)en\b
          captures:
            0: keyword.other.nix
          push:
            - match: \bel(?=se\b)
              captures:
                0: keyword.other.nix
              pop: true
            - include: expression
        - match: (?<=el)se\b
          captures:
            0: keyword.other.nix
          push:
            - match: '(?=([\])};,]|\b(else|then)\b))'
              captures:
                0: keyword.other.nix
              pop: true
            - include: expression
  illegal:
    - match: .
      scope: invalid.illegal
  interpolation:
    - match: '\$\{'
      captures:
        0: punctuation.section.embedded.begin.nix
      push:
        - meta_scope: markup.italic
        - match: '\}'
          captures:
            0: punctuation.section.embedded.end.nix
          pop: true
        - include: expression
  let:
    - match: (?=\blet\b)
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - match: \blet\b
          captures:
            0: keyword.other.nix
          push:
            - match: '(?=([\])};,]|\b(in|else|then)\b))'
              pop: true
            - match: '(?=\{)'
              push:
                - match: '(?=([\])};,]|\b(else|then)\b))'
                  pop: true
                - match: '\{'
                  push:
                    - match: '\}'
                      pop: true
                    - include: attrset-contents
                - match: '(^|(?<=\}))'
                  push:
                    - match: '(?=([\])};,]|\b(else|then)\b))'
                      pop: true
                    - include: expression-cont
                - include: others
            - include: attrset-contents
            - include: others
        - match: \bin\b
          captures:
            0: keyword.other.nix
          push:
            - match: '(?=([\])};,]|\b(else|then)\b))'
              pop: true
            - include: expression
  list:
    - match: '\['
      captures:
        0: punctuation.definition.list.nix
      push:
        - match: '\]'
          captures:
            0: punctuation.definition.list.nix
          pop: true
        - include: expression
  list-and-cont:
    - match: '(?=\[)'
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: list
        - include: expression-cont
  operator-unary:
    - match: (!|-)
      scope: keyword.operator.unary.nix
  others:
    - include: whitespace
    - include: comment
    - include: illegal
  parameter-name:
    - match: '\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*'
      captures:
        0: variable.parameter.name.nix
  parameter-name-and-cont:
    - match: '\b[a-zA-Z\_][a-zA-Z0-9\_\''\-]*'
      captures:
        0: variable.parameter.name.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
  parens:
    - match: \(
      captures:
        0: punctuation.definition.expression.nix
      push:
        - match: \)
          captures:
            0: punctuation.definition.expression.nix
          pop: true
        - include: expression
  parens-and-cont:
    - match: (?=\()
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: parens
        - include: expression-cont
  string:
    - match: (?=\'\')
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - match: \'\'
          captures:
            0: punctuation.definition.string.other.start.nix
          push:
            - meta_scope: string.quoted.other.nix
            - match: \'\'(?!\$|\'|\\.)
              captures:
                0: punctuation.definition.string.other.end.nix
              pop: true
            - match: \'\'(\$|\'|\\.)
              scope: constant.character.escape.nix
            - include: interpolation
        - include: expression-cont
    - match: (?=\")
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: string-quoted
        - include: expression-cont
    - match: '(~?[a-zA-Z0-9\.\_\-\+]*(\/[a-zA-Z0-9\.\_\-\+]+)+)'
      captures:
        0: string.unquoted.path.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
    - match: '(\<[a-zA-Z0-9\.\_\-\+]+(\/[a-zA-Z0-9\.\_\-\+]+)*\>)'
      captures:
        0: string.unquoted.spath.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
    - match: '([a-zA-Z][a-zA-Z0-9\+\-\.]*\:[a-zA-Z0-9\%\/\?\:\@\&\=\+\$\,\-\_\.\!\~\*\'']+)'
      captures:
        0: string.unquoted.url.nix
      push:
        - match: '(?=([\])};,]|\b(else|then)\b))'
          pop: true
        - include: expression-cont
  string-quoted:
    - match: \"
      captures:
        0: punctuation.definition.string.double.start.nix
      push:
        - meta_scope: string.quoted.double.nix
        - match: \"
          captures:
            0: punctuation.definition.string.double.end.nix
          pop: true
        - match: \\.
          scope: constant.character.escape.nix
        - include: interpolation
  whitespace:
    - match: \s+
  with-assert:
    - match: '(?<![\w''-])(with|assert)(?![\w''-])'
      captures:
        0: keyword.other.nix
      push:
        - match: \;
          pop: true
        - include: expression