Variable: treesit-font-lock-feature-list
treesit-font-lock-feature-list is a buffer-local variable defined in
treesit.el.gz.
Documentation
A list of lists of feature symbols.
Use treesit-font-lock-recompute-features and
treesit-font-lock-level to configure enabled features.
Each sublist represents a decoration level.
treesit-font-lock-level controls which levels are activated.
Inside each sublist are feature symbols, which correspond to the
:feature value of a query defined in treesit-font-lock-rules.
Removing a feature symbol from this list disables the
corresponding query during font-lock.
Common feature names (for general programming languages) include definition, type, assignment, builtin, constant, keyword, string-interpolation, comment, doc, string, operator, property, preprocessor, escape-sequence, key (in key-value pairs). Major modes are free to subdivide or extend on these common features. See the manual for more explanations on some of the features.
For changes to this variable to take effect, run
treesit-font-lock-recompute-features.
Source Code
;; Defined in /usr/src/emacs/lisp/treesit.el.gz
(defvar-local treesit-font-lock-feature-list nil
"A list of lists of feature symbols.
Use `treesit-font-lock-recompute-features' and
`treesit-font-lock-level' to configure enabled features.
Each sublist represents a decoration level.
`treesit-font-lock-level' controls which levels are activated.
Inside each sublist are feature symbols, which correspond to the
:feature value of a query defined in `treesit-font-lock-rules'.
Removing a feature symbol from this list disables the
corresponding query during font-lock.
Common feature names (for general programming languages) include
definition, type, assignment, builtin, constant, keyword,
string-interpolation, comment, doc, string, operator, property,
preprocessor, escape-sequence, key (in key-value pairs). Major
modes are free to subdivide or extend on these common features.
See the manual for more explanations on some of the features.
For changes to this variable to take effect, run
`treesit-font-lock-recompute-features'.")