(match nil "argument_list" nil nil 0 0)
@end example
+@item comment-end
+This matcher is a function of 3 arguments: @var{node}, @var{parent},
+and @var{bol}, and returns non-@code{nil} if point is before a comment
+ending token. Comment ending tokens are defined by regular expression
+@code{treesit-comment-end}.
+
@item first-sibling
This anchor is a function that is called with 3 arguments: @var{node},
@var{parent}, and @var{bol}, and returns the start of the first child
This anchor is a function is called with 3 arguments: @var{node},
@var{parent}, and @var{bol}, and returns the beginning of the buffer.
This is useful as the beginning of the buffer is always at column 0.
-@end ftable
+@item comment-start
+This anchor is a function is called with 3 arguments: @var{node},
+@var{parent}, and @var{bol}, and returns the position right after the
+opening comment token. Opening comment tokens are defined by regular
+expression @code{treesit-comment-start}. This function assumes
+@var{parent} is the comment node.
+
+@item coment-start-skip
+This anchor is a function is called with 3 arguments: @var{node},
+@var{parent}, and @var{bol}, and returns the position after the
+opening comment token, after skipping forward any whitespace
+characters. Opening comment tokens are defined by regular expression
+@code{treesit-comment-start}. This function assumes @var{parent} is
+the comment node.
+@end ftable
@end defvar
@heading Indentation utilities
For supporting mixing of multiple languages in a major mode,
@pxref{Multiple Languages}.
+Setting the following local variables allows tree-sitter's indentation
+engine to correctly indent multi-line comments:
+
+@defvar treesit-comment-start
+This should be a regular expression matching an opening comment token.
+For example, it should match @samp{//}, @samp{////}, @samp{/*},
+@samp{/****}, etc., in C.
+@end defvar
+
+@defvar treesit-comment-end
+This should be a regular expression matching an closing comment token.
+For example, it should match @samp{*/}, @samp{****/}, etc., in C.
+@end defvar
+
@node Tree-sitter C API
@section Tree-sitter C API Correspondence
((node-is "else") parent-bol 0)
((node-is "case") parent-bol 0)
((node-is "preproc_arg") no-indent)
- ((node-is "comment") no-indent)
- ((parent-is "comment") no-indent)
+ ((and (parent-is "comment") comment-end) comment-start -1)
+ ((parent-is "comment") comment-start-skip 0)
((node-is "labeled_statement") parent-bol 0)
((parent-is "labeled_statement") parent-bol c-ts-mode-indent-offset)
((match "preproc_ifdef" "compound_statement") point-min 0)
(setq-local comment-start "/* ")
(setq-local comment-start-skip "\\(?://+\\|/\\*+\\)\\s *")
(setq-local comment-end " */")
+ (setq-local treesit-comment-start (rx "/" (or (+ "/") (+ "*"))))
+ (setq-local treesit-comment-end (rx (+ (or "*")) "/"))
(setq-local treesit-simple-indent-rules
(c-ts-mode--set-indent-style 'c))
((node-is "}") (and parent parent-bol) 0)
((node-is ")") parent-bol 0)
((node-is "]") parent-bol 0)
+ ((and (parent-is "comment") comment-end) comment-start -1)
+ ((parent-is "comment") comment-start-skip 0)
((parent-is "class_body") parent-bol java-ts-mode-indent-offset)
((parent-is "interface_body") parent-bol java-ts-mode-indent-offset)
((parent-is "constructor_body") parent-bol java-ts-mode-indent-offset)
(setq-local comment-start "// ")
(setq-local comment-start-skip "\\(?://+\\|/\\*+\\)\\s *")
(setq-local comment-end "")
+ (setq-local treesit-comment-start (rx "/" (or (+ "/") (+ "*"))))
+ (setq-local treesit-comment-end (rx (+ (or "*")) "/"))
;; Indent.
(setq-local treesit-simple-indent-rules java-ts-mode--indent-rules)
((node-is ")") parent-bol 0)
((node-is "]") parent-bol 0)
((node-is ">") parent-bol 0)
+ ((parent-is "comment") comment-start 0)
+ ((and (parent-is "comment") comment-end) comment-start -1)
+ ((parent-is "comment") comment-start-skip 0)
((parent-is "ternary_expression") parent-bol js-indent-level)
((parent-is "member_expression") parent-bol js-indent-level)
((node-is ,switch-case) parent-bol 0)
(setq-local comment-start-skip "\\(?://+\\|/\\*+\\)\\s *")
(setq-local comment-end "")
(setq-local comment-multi-line t)
+ (setq-local treesit-comment-start (rx "/" (or (+ "/") (+ "*"))))
+ (setq-local treesit-comment-end (rx (+ (or "*")) "/"))
;; Electric-indent.
(setq-local electric-indent-chars
(append "{}():;," electric-indent-chars)) ;FIXME: js2-mode adds "[]*".
((node-is ")") parent-bol 0)
((node-is "]") parent-bol 0)
((node-is ">") parent-bol 0)
+ ((and (parent-is "comment") comment-end) comment-start -1)
+ ((parent-is "comment") comment-start-skip 0)
((parent-is "ternary_expression") parent-bol ts-mode-indent-offset)
((parent-is "member_expression") parent-bol ts-mode-indent-offset)
((parent-is "named_imports") parent-bol ts-mode-indent-offset)
(setq-local comment-start "// ")
(setq-local comment-start-skip "\\(?://+\\|/\\*+\\)\\s *")
(setq-local comment-end "")
+ (setq-local treesit-comment-start (rx "/" (or (+ "/") (+ "*"))))
+ (setq-local treesit-comment-end (rx (+ (or "*")) "/"))
;; Electric
(setq-local electric-indent-chars
;;; Indent
+;; `comment-start' and `comment-end' assumes there is only one type of
+;; comment and comment spans only one line. So they are not
+;; sufficient for our purpose.
+
+(defvar-local treesit-comment-start nil
+ "Regular expression matching an opening comment token.")
+
+(defvar-local treesit-comment-end nil
+ "Regular expression matching an closing comment token.")
+
(define-error 'treesit-indent-error
"Generic tree-sitter indentation error"
'treesit-error)
(lambda (node &rest _)
(string-match-p
name (or (treesit-node-field-name node) "")))))
+ (cons 'comment-end (lambda (&rest _)
+ (looking-at-p treesit-comment-end)))
;; TODO: Document.
(cons 'catch-all (lambda (&rest _) t))
(treesit-node-child parent n named)))))
(cons 'parent (lambda (_n parent &rest _)
(treesit-node-start parent)))
+ (cons 'comment-start
+ (lambda (_n parent &rest _)
+ (save-excursion
+ (goto-char (treesit-node-start parent))
+ (re-search-forward treesit-comment-start)
+ (point))))
+ (cons 'comment-start-skip
+ (lambda (_n parent &rest _)
+ (save-excursion
+ (goto-char (treesit-node-start parent))
+ (re-search-forward treesit-comment-start)
+ (skip-syntax-forward "-")
+ (point))))
;; TODO: Document.
(cons 'grand-parent
(lambda (_n parent &rest _)
Queries PARENT with QUERY, and checks if NODE is
captured (by any capture name).
+comment-end
+
+ Matches if text after point matches `treesit-comment-end'.
+
ANCHOR:
first-sibling
point-min
- Returns the beginning of buffer, which is always at column 0.")
+ Returns the beginning of buffer, which is always at column 0.
+
+comment-start
+
+ Returns the ending position after matching `treesit-comment-start'.
+ Assuming PARENT is a comment node.
+
+comment-start-skip
+
+ Goes to the position comment-start would return, skip
+ whitespaces forward, and return the resulting position.
+ Assuming PARENT is a comment node.")
(defun treesit--simple-indent-eval (exp)
"Evaluate EXP.