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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[
  (use_list)
  (block)
  (match_block)
  (arguments)
  (parameters)
  (declaration_list)
  (field_declaration_list)
  (field_initializer_list)
  (struct_pattern)
  (tuple_pattern)
  (unit_expression)
  (enum_variant_list)
  (call_expression)
  (binary_expression)
  (field_expression)
  (tuple_expression)
  (array_expression)
  (where_clause)

  (token_tree)
] @indent

[
  "}"
  "]"
  ")"
] @outdent

; Indent the right side of assignments.
; The #not-same-line? predicate is required to prevent an extra indent for e.g.
; an else-clause where the previous if-clause starts on the same line as the assignment.
(assignment_expression
  .
  (_) @expr-start
  right: (_) @indent
  (#not-same-line? @indent @expr-start)
  (#set! "scope" "all")
)
(compound_assignment_expr
  .
  (_) @expr-start
  right: (_) @indent
  (#not-same-line? @indent @expr-start)
  (#set! "scope" "all")
)
(let_declaration
  .
  (_) @expr-start
  value: (_) @indent
  alternative: (_)? @indent
  (#not-same-line? @indent @expr-start)
  (#set! "scope" "all")
)
(if_expression
  .
  (_) @expr-start
  condition: (_) @indent
  (#not-same-line? @indent @expr-start)
  (#set! "scope" "all")
)

; Some field expressions where the left part is a multiline expression are not
; indented by cargo fmt.
; Because this multiline expression might be nested in an arbitrary number of
; field expressions, this can only be matched using a Regex.
(field_expression
  value: (_) @val
  "." @outdent
  (#match? @val "(\\A[^\\n\\r]+\\([\\t ]*(\\n|\\r).*)|(\\A[^\\n\\r]*\\{[\\t ]*(\\n|\\r))")
)
stant.builtin "^__\\?[A-Z_a-z0-9]+\\?__$")) (word) @variable (preproc_arg) @keyword.directive [ (preproc_def) (preproc_function_def) (preproc_undef) (preproc_alias) (preproc_multiline_macro) (preproc_multiline_unmacro) (preproc_if) (preproc_rotate) (preproc_rep_loop) (preproc_include) (preproc_pathsearch) (preproc_depend) (preproc_use) (preproc_push) (preproc_pop) (preproc_repl) (preproc_arg) (preproc_stacksize) (preproc_local) (preproc_reporting) (preproc_pragma) (preproc_line) (preproc_clear) ] @keyword.directive [ (pseudo_instruction_dx) (pseudo_instruction_resx) (pseudo_instruction_incbin_command) (pseudo_instruction_equ_command) (pseudo_instruction_times_prefix) (pseudo_instruction_alignx_macro) ] @function.special [ (assembl_directive_target) (assembl_directive_defaults) (assembl_directive_sections) (assembl_directive_absolute) (assembl_directive_symbols) (assembl_directive_common) (assembl_directive_symbolfixes) (assembl_directive_cpu) (assembl_directive_floathandling) (assembl_directive_org) (assembl_directive_sectalign) (assembl_directive_primitive_target) (assembl_directive_primitive_defaults) (assembl_directive_primitive_sections) (assembl_directive_primitive_absolute) (assembl_directive_primitive_symbols) (assembl_directive_primitive_common) (assembl_directive_primitive_symbolfixes) (assembl_directive_primitive_cpu) (assembl_directive_primitive_floathandling) (assembl_directive_primitive_org) (assembl_directive_primitive_sectalign) (assembl_directive_primitive_warning) (assembl_directive_primitive_map) ] @keyword