Unnamed repository; edit this file 'description' to name the repository.
Align arguments in a function call in C.
Since the tree-sitter grammar is not very good
at parsing function calls while they're being written,
this is not yet super useful.
However, it prevents the new `hybrid` indent heuristic
from choosing these lines as a baseline, making it
more robust.
| -rw-r--r-- | runtime/queries/c/indents.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/queries/c/indents.scm b/runtime/queries/c/indents.scm index 058d8031..0e97ed2b 100644 --- a/runtime/queries/c/indents.scm +++ b/runtime/queries/c/indents.scm @@ -36,3 +36,6 @@ (parameter_list . (parameter_declaration) @anchor (#set! "scope" "tail")) @align +(argument_list + . (_) @anchor + (#set! "scope" "tail")) @align |