mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add alignment indent queries for binary & ternary expressions in C.
This commit is contained in:
parent
723a132bdf
commit
33d85606cf
1 changed files with 10 additions and 0 deletions
|
@ -39,3 +39,13 @@
|
||||||
(argument_list
|
(argument_list
|
||||||
. (_) @anchor
|
. (_) @anchor
|
||||||
(#set! "scope" "tail")) @align
|
(#set! "scope" "tail")) @align
|
||||||
|
; These are a bit opinionated since some people just indent binary/ternary expressions spanning multiple lines.
|
||||||
|
; Since they are only triggered when a newline is inserted into an already complete binary/ternary expression,
|
||||||
|
; this should happen rarely, so it is not a big deal either way.
|
||||||
|
; Additionally, adding these queries has the advantage of preventing such continuation lines from being used
|
||||||
|
; as the baseline when the `hybrid` indent heuristic is used (which is desirable since their indentation is so inconsistent).
|
||||||
|
(binary_expression
|
||||||
|
(#set! "scope" "tail")) @anchor @align
|
||||||
|
(conditional_expression
|
||||||
|
"?" @anchor
|
||||||
|
(#set! "scope" "tail")) @align
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue