Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/ponylang/indents.scm')
| -rw-r--r-- | runtime/queries/ponylang/indents.scm | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/runtime/queries/ponylang/indents.scm b/runtime/queries/ponylang/indents.scm deleted file mode 100644 index ef9c8203..00000000 --- a/runtime/queries/ponylang/indents.scm +++ /dev/null @@ -1,32 +0,0 @@ -; queries for helix to do automatic indentation upon hitting enter -; TODO: needs more work, cover more cases -[ - (entity) - (method) - (behavior) - (constructor) - (block) - (tuple) - (grouped) -] @indent -(match_case body: (block) @indent) -; ffi_call and call -(_ arguments: (_) @indent) -(assignment right: (_) @indent - (#set! "scope" "all") -) - -[ - (params) - (object) - ("if") -] @extend -(lambda params: (_) @extend) - -[ - "end" - "}" - "]" - ")" - "|" -] @outdent |