Variable: treesit-sentence-type-regexp

treesit-sentence-type-regexp is a buffer-local variable defined in treesit.el.gz.

Documentation

A regexp that matches the node type of sentence nodes.

A sentence node is a node that is bigger than a sexp, and delimits larger statements in the source code. It is, however, smaller in scope than defuns. This is used by treesit-forward-sentence and friends.

Source Code

;; Defined in /usr/src/emacs/lisp/treesit.el.gz
(defvar-local treesit-sentence-type-regexp nil
  "A regexp that matches the node type of sentence nodes.

A sentence node is a node that is bigger than a sexp, and
delimits larger statements in the source code.  It is, however,
smaller in scope than defuns.  This is used by
`treesit-forward-sentence' and friends.")