blob: 03d9464bca3be27d1b3aa31ce145f76349c62492 (
plain) (
blame)
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
|
[
(class_body)
(function_body)
(function_expression_body)
(declaration
(initializers))
(switch_block)
(formal_parameter_list)
(formal_parameter)
(list_literal)
(return_statement)
(arguments)
(try_statement)
] @indent.begin
(switch_block
(_) @indent.begin
(#set! indent.immediate 1)
(#set! indent.start_at_same_line 1))
[
(switch_statement_case)
(switch_statement_default)
] @indent.branch
[
"("
")"
"{"
"}"
"["
"]"
] @indent.branch
"}" @indent.end
(return_statement
";" @indent.end)
(break_statement
";" @indent.end)
(comment) @indent.ignore
; dedenting the else block is painfully slow; replace with simpler strategy
; (if_statement) @indent.begin
; (if_statement
; (block) @indent.branch)
(if_statement) @indent.auto
|