Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/odin/indents.scm')
| -rw-r--r-- | runtime/queries/odin/indents.scm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/runtime/queries/odin/indents.scm b/runtime/queries/odin/indents.scm deleted file mode 100644 index 223bab13..00000000 --- a/runtime/queries/odin/indents.scm +++ /dev/null @@ -1,25 +0,0 @@ -[ - (block) - (enum_declaration) - (union_declaration) - (struct_declaration) - (struct) - (parameters) - (tuple_type) - (struct_type) - (call_expression) - (switch_case) -] @indent - -[ - ")" - "]" -] @outdent - -; Have to do all closing brackets separately because the one for switch statements shouldn't end. -(block "}" @outdent) -(enum_declaration "}" @outdent) -(union_declaration "}" @outdent) -(struct_declaration "}" @outdent) -(struct "}" @outdent) -(struct_type "}" @outdent) |