Unnamed repository; edit this file 'description' to name the repository.
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
[ "(" ")" "[" "]" "{" "}" ] @rainbow.bracket
[
  ; quote & unquote
  (quote_form)
  (unquote_form)

  ; bindings + variables
  (local_form)
  (var_form)
  (set_form)
  (global_form)

  ; let
  (let_form)
  (let_vars)

  ; functions
  (fn_form)
  (lambda_form)
  (hashfn_form)

  ; case & match
  (case_form)
  (case_catch)
  (case_guard)
  (case_guard_or_special)
  (match_form)

  ; case-try & match-try
  (case_try_form)
  (match_try_form)

  ; each
  (each_form)
  (iter_body)

  ; if
  (if_form)

  ; import-macros
  (import_macros_form)

  ; macro
  (macro_form)

  ; other
  (list)
  (list_binding)
  (sequence)
  (sequence_binding)
  (sequence_arguments)
  (table)
  (table_binding)
  (table_metadata)
] @rainbow.scope