1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
| | ;;; c-ts-common.el --- Utilities for C like Languages -*- lexical-binding: t; -*-
;; Copyright (C) 2023-2024 Free Software Foundation, Inc.
;; Maintainer : 付禹安 (Yuan Fu) <casouri@gmail.com>
;; Package : emacs
;; Keywords : c c++ java javascript rust languages tree-sitter
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This file contains functions that can be shared by C-like language
;; major modes, like indenting and filling "/* */" block comments.
;;
;; For indenting and filling comments:
;;
;; - Use `c-ts-common-comment-setup' to setup comment variables and
;; filling.
;;
;; - Use simple-indent matcher `c-ts-common-looking-at-star' and
;; anchor `c-ts-common-comment-start-after-first-star' for indenting
;; block comments. See `c-ts-mode--indent-styles' for example.
;;
;; For indenting statements:
;;
;; - Set `c-ts-common-indent-offset', and
;; `c-ts-common-indent-type-regexp-alist', then use simple-indent
;; offset `c-ts-common-statement-offset' in
;; `treesit-simple-indent-rules'.
;;; Code:
(require 'treesit)
(eval-when-compile (require 'rx))
(treesit-declare-unavailable-functions)
;;; Comment indentation and filling
(defun c-ts-common-looking-at-star (_n _p bol &rest _)
"A tree-sitter simple indent matcher.
Matches if there is a \"*\" after BOL."
(eq (char-after bol) ?*))
(defun c-ts-common-comment-start-after-first-star (_n parent &rest _)
"A tree-sitter simple indent anchor.
Finds the \"/*\" and returns the point after the \"*\".
Assumes PARENT is a comment node."
(save-excursion
(goto-char (treesit-node-start parent))
(if (looking-at (rx "/*"))
(match-end 0)
(point))))
(defun c-ts-common-comment-2nd-line-matcher (_n parent &rest _)
"Matches if point is at the second line of a block comment.
PARENT should be a comment node."
(and (equal (treesit-node-type parent) "comment")
(save-excursion
(forward-line -1)
(back-to-indentation)
(eq (point) (treesit-node-start parent)))))
(defun c-ts-common-comment-2nd-line-anchor (_n _p bol &rest _)
"Return appropriate anchor for the second line of a comment.
If the first line is /* alone, return the position right after
the star; if the first line is /* followed by some text, return
the position right before the text minus 1.
Use an offset of 1 with this anchor. BOL is the beginning of
non-whitespace characters of the current line."
(save-excursion
(forward-line -1)
(back-to-indentation)
(when (looking-at comment-start-skip)
(goto-char (match-end 0))
(if (looking-at (rx (* (or " " "\t")) eol))
;; Only /* at the first line.
(progn (skip-chars-backward " \t")
(if (save-excursion
(goto-char bol)
(looking-at (rx "*")))
;; The common case. Checked by "Multiline Block
;; Comments 4".
(point)
;; The "Multiline Block Comments 2" test in
;; c-ts-common-resources/indent.erts checks this.
(1- (point))))
;; There is something after /* at the first line. The
;; "Multiline Block Comments 3" test checks this.
(1- (point))))))
(defvar c-ts-common--comment-regexp
;; These covers C/C++, Java, JavaScript, TypeScript, Rust, C#.
(rx (or "comment" "line_comment" "block_comment"))
"Regexp pattern that matches a comment in C-like languages.")
(defun c-ts-common--fill-paragraph (&optional arg)
"Filling function for `c-ts-common'.
ARG is passed to `fill-paragraph'."
(interactive "*P")
(save-restriction
(widen)
(let ((node (treesit-node-at (point))))
(when (string-match-p c-ts-common--comment-regexp
(treesit-node-type node))
(if (or (save-excursion
(goto-char (treesit-node-start node))
(looking-at "//"))
;; In rust, NODE will be the body of a comment, and the
;; parent will be the whole comment.
(if-let* ((start (treesit-node-start
(treesit-node-parent node))))
(save-excursion
(goto-char start)
(looking-at "//"))))
(fill-comment-paragraph arg)
(c-ts-common--fill-block-comment arg)))
;; Return t so `fill-paragraph' doesn't attempt to fill by
;; itself.
t)))
(defun c-ts-common--fill-block-comment (&optional arg)
"Filling function for block comments.
ARG is passed to `fill-paragraph'. Assume point is in a block
comment."
(let* ((node (treesit-node-at (point)))
(start (treesit-node-start node))
(end (treesit-node-end node))
;; Bind to nil to avoid infinite recursion.
(fill-paragraph-function nil)
(orig-point (point-marker))
(start-marker (point-marker))
(end-marker nil)
(end-len 0)
(end-mask-done nil))
(move-marker start-marker start)
;; If the first line is /* followed by non-text, exclude this line
;; from filling.
(atomic-change-group
(goto-char start)
(when (looking-at (rx (* (syntax whitespace))
(group "/") "*"
(* (or "*" "=" "-" "/" (syntax whitespace)))
eol))
(forward-line)
(move-marker start-marker (point)))
;; Include whitespaces before /*.
(goto-char start)
(beginning-of-line)
(setq start (point))
;; Mask spaces before "*/" if it is attached at the end
;; of a sentence rather than on its own line.
(goto-char end)
(when (looking-back (rx (not (syntax whitespace))
(group (+ (syntax whitespace)))
"*/")
(line-beginning-position))
(goto-char (match-beginning 1))
(setq end-marker (point-marker))
(setq end-len (- (match-end 1) (match-beginning 1)))
(setq end-mask-done t)
(replace-match (make-string end-len ?x)
nil nil nil 1))
;; If "*/" is on its own line, don't included it in the
;; filling region.
(when (not end-marker)
(goto-char end)
(forward-line 0)
(when (looking-at (rx (* (or (syntax whitespace) "*" "=" "-"))
"*/" eol))
(setq end (point))))
;; Let `fill-paragraph' do its thing.
(goto-char orig-point)
(narrow-to-region start end)
(let (para-start para-end)
(forward-paragraph 1)
(setq para-end (point))
(forward-paragraph -1)
(setq para-start (point))
;; We don't want to fill the region between START and
;; START-MARKER, otherwise the filling function might delete
;; some spaces there. Also, we only fill the current
;; paragraph.
(fill-region (max start-marker para-start) (min end para-end) arg))
;; Unmask.
(when (and end-marker end-mask-done)
(goto-char end-marker)
(delete-region (point) (+ end-len (point)))
(insert (make-string end-len ?\s)))
(goto-char orig-point))))
(defun c-ts-common--adaptive-fill-prefix ()
"Returns the appropriate fill-prefix for this paragraph.
This function should be called at BOL. Used by
`adaptive-fill-function'."
(cond
;; (1)
;; If current line is /* and next line is * -> prefix is *.
;; Eg:
;; /* xxx => /* xxx
;; * xxx xxx * xxx
;; * xxx
;; If current line is /* and next line isn't * or doesn't exist ->
;; prefix is whitespace.
;; Eg:
;; /* xxx xxx */ => /* xxx
;; xxx */
((and (looking-at (rx (* (syntax whitespace))
"/*"
(* "*")
(* (syntax whitespace))))
(let ((whitespaces (make-string (length (match-string 0)) ?\s)))
(save-excursion
(if (and (eq (forward-line) 0)
(looking-at (rx (* (syntax whitespace))
"*"
(* (syntax whitespace)))))
(match-string 0)
whitespaces)))))
;; (2)
;; Current line: //, ///, ////...
;; Prefix: same.
((looking-at (rx (* (syntax whitespace))
"//"
(* "/")
(* (syntax whitespace))))
(match-string 0))
;; (3)
;; Current line: *, |, -
;; Prefix: same.
;; Adaptive fill looks at the first and second line of a paragraph,
;; only when both lines return the same prefix does it use that
;; prefix for the following lines. If the first lines matches branch
;; (1) and returns * as prefix, and the second line matches this
;; branch (3), and returns * as prefix, then the whole paragraph will
;; use * as prefix.
((looking-at (rx (* (syntax whitespace))
(or "*" "|" "-")
(* (syntax whitespace))))
(match-string 0))
;; Other: let `adaptive-fill-regexp' and
;; `adaptive-fill-first-line-regexp' decide.
(t nil)))
(defun c-ts-common-comment-setup ()
"Set up local variables for C-like comment.
Set up:
- `comment-start'
- `comment-end'
- `comment-start-skip'
- `comment-end-skip'
- `adaptive-fill-mode'
- `adaptive-fill-first-line-regexp'
- `paragraph-start'
- `paragraph-separate'
- `fill-paragraph-function'
- `comment-line-break-function'
- `comment-multi-line'"
(setq-local comment-start "// ")
(setq-local comment-end "")
(setq-local comment-start-skip (rx (or (seq "/" (+ "/"))
(seq "/" (+ "*")))
(* (syntax whitespace))))
(setq-local comment-end-skip
(rx (* (syntax whitespace))
(group (or (syntax comment-end)
(seq (+ "*") "/")))))
(setq-local adaptive-fill-mode t)
(setq-local adaptive-fill-function #'c-ts-common--adaptive-fill-prefix)
;; Always accept * or | as prefix, even if there's only one line in
;; the paragraph.
(setq-local adaptive-fill-first-line-regexp
(rx bos
(* (syntax whitespace))
(or "*" "|")
(* (syntax whitespace))
eos))
(setq-local paragraph-start
(rx (or (seq (* (syntax whitespace))
(group (or (seq "/" (+ "/")) (* "*")))
(* (syntax whitespace))
;; Add this eol so that in
;; `fill-context-prefix', `paragraph-start'
;; doesn't match the prefix.
eol)
"\f")))
(setq-local paragraph-separate paragraph-start)
(setq-local fill-paragraph-function #'c-ts-common--fill-paragraph)
(setq-local comment-line-break-function
#'c-ts-common-comment-indent-new-line)
(setq-local comment-multi-line t))
(defun c-ts-common-comment-indent-new-line (&optional soft)
"Break line at point and indent, continuing comment if within one.
This is like `comment-indent-new-line', but specialized for C-style //
and /* */ comments. SOFT works the same as in
`comment-indent-new-line'."
;; I want to experiment with explicitly listing out all each cases and
;; handle them separately, as opposed to fiddling with `comment-start'
;; and friends. This will have more duplicate code and will be less
;; generic, but in the same time might save us from writing cryptic
;; code to handle all sorts of edge cases.
;;
;; For this command, let's try to make it basic: if the current line
;; is a // comment, insert a newline and a // prefix; if the current
;; line is in a /* comment, insert a newline and a * prefix. No
;; auto-fill or other smart features.
(let ((insert-line-break
(lambda ()
(delete-horizontal-space)
(if soft
(insert-and-inherit ?\n)
(newline 1)))))
(cond
;; Line starts with //, or ///, or ////...
;; Or //! (used in rust).
((save-excursion
(beginning-of-line)
(re-search-forward
(rx "//" (group (* (any "/!")) (* " ")))
(line-end-position)
t nil))
(let ((offset (- (match-beginning 0) (line-beginning-position)))
(whitespaces (match-string 1)))
(funcall insert-line-break)
(delete-region (line-beginning-position) (point))
(insert (make-string offset ?\s) "//" whitespaces)))
;; Line starts with /* or /**.
((save-excursion
(beginning-of-line)
(re-search-forward
(rx "/*" (group (? "*") (* " ")))
(line-end-position)
t nil))
(let ((offset (- (match-beginning 0) (line-beginning-position)))
(whitespace-and-star-len (length (match-string 1))))
(funcall insert-line-break)
(delete-region (line-beginning-position) (point))
(insert
(make-string offset ?\s)
" *"
(make-string whitespace-and-star-len ?\s))))
;; Line starts with *.
((save-excursion
(beginning-of-line)
(looking-at (rx (group (* " ") (any "*|") (* " ")))))
(let ((prefix (match-string 1)))
(funcall insert-line-break)
(delete-region (line-beginning-position) (point))
(insert prefix)))
;; Line starts with whitespaces or no space. This is basically the
;; default case since (rx (* " ")) matches anything.
((save-excursion
(beginning-of-line)
(looking-at (rx (* " "))))
(let ((whitespaces (match-string 0)))
(funcall insert-line-break)
(delete-region (line-beginning-position) (point))
(insert whitespaces))))))
;; Font locking using doxygen parser
(defvar c-ts-mode-doxygen-comment-font-lock-settings
(treesit-font-lock-rules
:language 'doxygen
:feature 'document
:override t
'((document) @font-lock-doc-face)
:language 'doxygen
:override t
:feature 'keyword
'((tag_name) @font-lock-constant-face
(storageclass) @font-lock-constant-face)
:language 'doxygen
:override t
:feature 'definition
'((tag (identifier) @font-lock-variable-name-face)
(function (identifier) @font-lock-function-name-face)
(function_link) @font-lock-function-name-face))
"Tree-sitter font lock rules for doxygen like comment styles.")
;;; Statement indent
(defvar c-ts-common-indent-offset nil
"Indent offset used by `c-ts-common' indent functions.
This should be the symbol of the indent offset variable for the
particular major mode. This cannot be nil for `c-ts-common'
statement indent functions to work.")
(defvar c-ts-common-indent-type-regexp-alist nil
"An alist of node type regexps.
Each key in the alist is one of `if', `else', `do', `while',
`for', `block', `close-bracket'. Each value in the alist
is the regexp matching the type of that kind of node. Most of
these types are self-explanatory, e.g., `if' corresponds to
\"if_statement\" in C. `block' corresponds to the {} block.
Some types, specifically `else', is usually not identified by a
standalone node, but a child under the \"if_statement\", under a
field name like \"alternative\", etc. In that case, use a
cons (TYPE . FIELD-NAME) as the value, where TYPE is the node's
parent's type, and FIELD-NAME is the field name of the node.
If the language doesn't have a particular type, it is fine to
omit it.")
(defun c-ts-common--node-is (node &rest types)
"Return non-nil if NODE is any one of the TYPES.
TYPES can be any of `if', `else', `while', `do', `for', and
`block'.
If NODE is nil, return nil."
(declare (indent 2))
(catch 'ret
(when (null node)
(throw 'ret nil))
(dolist (type types)
(let ((regexp (alist-get
type c-ts-common-indent-type-regexp-alist))
(parent (treesit-node-parent node)))
(when (and regexp
(if (consp regexp)
(and parent
(string-match-p (car regexp)
(treesit-node-type parent))
(treesit-node-field-name node)
(string-match-p (cdr regexp)
(treesit-node-field-name
node)))
(string-match-p regexp (treesit-node-type node))))
(throw 'ret t))))
nil))
(defun c-ts-common-statement-offset (node parent &rest _)
"Return an indent offset for a statement inside a block.
Assumes the anchor is (point-min), i.e., the 0th column.
This function basically counts the number of block nodes (i.e.,
brackets) (see `c-ts-common-indent-type-regexp-alist')
between NODE and the root node (not counting NODE itself), and
multiplies that by `c-ts-common-indent-offset'.
To support GNU style, on each block level, this function also
checks whether the opening bracket { is on its own line, if so,
it adds an extra level, except for the top-level.
It also has special handling for bracketless statements and
else-if statements, which see.
PARENT is NODE's parent, BOL is the beginning of non-whitespace
characters on the current line."
(let ((level 0))
;; If NODE is a opening/closing bracket on its own line, take off
;; one level because the code below assumes NODE is a statement
;; _inside_ a {} block.
(when (c-ts-common--node-is node 'block 'close-bracket)
(cl-decf level))
;; If point is on an empty line, NODE would be nil, but we pretend
;; there is a statement node.
(when (null node)
(setq node t))
;; Go up the tree and compute indent level.
(while (if (eq node t)
(setq node parent)
node)
(let ((parent (treesit-node-parent node)))
;; Increment level for every bracket (with exception).
(when (c-ts-common--node-is node 'block)
(cl-incf level)
(save-excursion
(goto-char (treesit-node-start node))
;; Add an extra level if the opening bracket is on its own
;; line, except (1) it's at top-level, or (2) it's immediate
;; parent is another block.
(cond ((bolp) nil) ; Case (1).
((c-ts-common--node-is parent 'block) ; Case (2).
nil)
;; Add a level.
((looking-back (rx bol (* whitespace))
(line-beginning-position))
(cl-incf level)))))
;; Fix bracketless statements.
(when (and (c-ts-common--node-is parent
'if 'do 'while 'for)
(not (c-ts-common--node-is node 'block)))
(cl-incf level))
;; Flatten "else if" statements.
(when (and (c-ts-common--node-is node 'else)
(c-ts-common--node-is node 'if)
;; But if the "if" is on it's own line, still
;; indent a level.
(not (save-excursion
(goto-char (treesit-node-start node))
(looking-back (rx bol (* whitespace))
(line-beginning-position)))))
(cl-decf level)))
;; Go up the tree.
(setq node (treesit-node-parent node)))
(* level (symbol-value c-ts-common-indent-offset))))
;;; Baseline indent rule
(defvar c-ts-common-list-indent-style 'align
"Intructs `c-ts-common-baseline-indent-rule' how to indent lists.
If the value is `align', indent lists like this:
const a = [
1, 2, 3
4, 5, 6,
];
If the value is `simple', indent lists like this:
const a = [
1, 2, 3,
4, 5, 6,
];")
(defun c-ts-common--standalone-parent (parent)
"Find the first parent that starts on a new line.
Start searching from PARENT, so if PARENT satisfies the condition, it'll
be returned. Return the starting position of the parent, return nil if
no parent satisfies the condition."
(save-excursion
(catch 'term
(while parent
(goto-char (treesit-node-start parent))
(when (looking-back (rx bol (* whitespace))
(line-beginning-position))
(throw 'term (point)))
(setq parent (treesit-node-parent parent))))))
(defun c-ts-common--prev-standalone-sibling (node)
"Return the previous sibling of NODE that starts on a new line.
Return nil if no sibling satisfies the condition."
(save-excursion
(setq node (treesit-node-prev-sibling node 'named))
(goto-char (treesit-node-start node))
(while (and node
(goto-char (treesit-node-start node))
(not (looking-back (rx bol (* whitespace))
(pos-bol))))
(setq node (treesit-node-prev-sibling node 'named)))
node))
(defun c-ts-common-parent-ignore-preproc (node)
"Return the parent of NODE, skipping preproc nodes."
(let ((parent (treesit-node-parent node))
(pred (if (treesit-thing-defined-p
'preproc (or (and node (treesit-node-language node))
(treesit-parser-language
treesit-primary-parser)))
'preproc
"preproc")))
(while (and parent (treesit-node-match-p parent pred))
(setq parent (treesit-node-parent parent)))
parent))
(defun c-ts-common-baseline-indent-rule (node parent bol &rest _)
"Baseline indent rule for C-like languages.
NODE PARENT, BOL are like in other simple indent rules.
This rule works as follows:
Let PREV-NODE be the largest node that starts on previous line,
basically the NODE we get if we were indenting previous line.
0. Closing brace aligns with first parent that starts on a new line.
1. If PREV-NODE and NODE are siblings, align this line to previous
line (PREV-NODE as the anchor, and offset is 0).
2. If PARENT is a list, ie, (...) [...], align with NODE's first
sibling. For the first sibling and the closing paren or bracket, indent
according to `c-ts-common-list-indent-style'. This rule also handles
initializer lists like {...}, but initializer lists doesn't respect
`c-ts-common-list-indent-style'--they always indent in the `simple'
style.
3. Otherwise, go up the parse tree from NODE and look for a parent that
starts on a new line. Use that parent as the anchor and indent one
level. But if the node is a top-level construct (ignoring preprocessor
nodes), don't indent it.
This rule works for a wide range of scenarios including complex
situations. Major modes should use this as the fallback rule, and add
exception rules before it to cover the cases it doesn't apply.
This rule tries to be smart and ignore proprocessor node in some
situations. By default, any node that has \"proproc\" in its type are
considered a preprocessor node. If that heuristic is inaccurate, define
a `preproc' thing in `treesit-thing-settings', and this rule will use
the thing definition instead."
(let ((prev-line-node (treesit--indent-prev-line-node bol))
(offset (symbol-value c-ts-common-indent-offset)))
(cond
;; Condition 0.
((and (treesit-node-match-p node "}")
(treesit-node-match-p (treesit-node-child parent 0) "{"))
(cons (c-ts-common--standalone-parent parent)
0))
;; Condition 1.
((and (treesit-node-eq (treesit-node-parent prev-line-node)
parent)
(not (treesit-node-match-p node (rx (or ")" "]")))))
(cons (treesit-node-start prev-line-node)
0))
;; Condition 2.
((treesit-node-match-p (treesit-node-child parent 0)
(rx (or "(" "[")))
(let ((first-sibling (treesit-node-child parent 0 'named)))
(cond
;; Closing delimeters.
((treesit-node-match-p node (rx (or ")" "]")))
(if (eq c-ts-common-list-indent-style 'align)
(cons (treesit-node-start (treesit-node-child parent 0))
0)
(cons (c-ts-common--standalone-parent parent)
0)))
;; First sibling.
((treesit-node-eq node first-sibling)
(if (eq c-ts-common-list-indent-style 'align)
(cons (treesit-node-start (treesit-node-child parent 0))
1)
(cons (c-ts-common--standalone-parent parent)
offset)))
;; Not first sibling
(t (cons (treesit-node-start
(or (c-ts-common--prev-standalone-sibling node)
first-sibling))
0)))))
;; Condition 2 for initializer list, only apply to
;; second line. Eg,
;;
;; return { 1, 2, 3,
;; 4, 5, 6, --> Handled by this condition.
;; 7, 8, 9 }; --> Handled by condition 1.
((and (treesit-node-match-p (treesit-node-child parent 0) "{")
(treesit-node-prev-sibling node 'named))
;; If first sibling is a comment, indent like code; otherwise
;; align to first sibling.
(if (treesit-node-match-p
(treesit-node-child parent 0 'named)
c-ts-common--comment-regexp 'ignore-missing)
(cons (c-ts-common--standalone-parent parent)
offset)
(cons (treesit-node-start
(treesit-node-child parent 0 'named))
0)))
;; Before we fallback to condition 3, make sure we don't indent
;; top-level stuff.
((treesit-node-eq (treesit-parser-root-node
(treesit-node-parser parent))
(c-ts-common-parent-ignore-preproc node))
(cons (pos-bol) 0))
;; Condition 3.
(t (cons (c-ts-common--standalone-parent parent)
offset)))))
(provide 'c-ts-common)
;;; c-ts-common.el ends here
|