aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/c/indents.scm
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/queries/c/indents.scm')
-rw-r--r--runtime/queries/c/indents.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/runtime/queries/c/indents.scm b/runtime/queries/c/indents.scm
new file mode 100644
index 00000000..353ea81b
--- /dev/null
+++ b/runtime/queries/c/indents.scm
@@ -0,0 +1,33 @@
+[
+ (compound_statement)
+ (field_declaration_list)
+ (enumerator_list)
+ (parameter_list)
+ (init_declarator)
+ (case_statement)
+ (expression_statement)
+] @indent
+
+[
+ "case"
+ "}"
+ "]"
+] @outdent
+
+(if_statement
+ consequence: (_) @indent
+ (#not-kind-eq? @indent "compound_statement")
+ (#set! "scope" "all"))
+(while_statement
+ body: (_) @indent
+ (#not-kind-eq? @indent "compound_statement")
+ (#set! "scope" "all"))
+(do_statement
+ body: (_) @indent
+ (#not-kind-eq? @indent "compound_statement")
+ (#set! "scope" "all"))
+(for_statement
+ ")"
+ (_) @indent
+ (#not-kind-eq? @indent "compound_statement")
+ (#set! "scope" "all"))