Variable: helpful--highlighting-funcs

helpful--highlighting-funcs is a variable defined in helpful.el.

Value

(highlight-numbers-mode highlight-function-calls-mode
			ert--activate-font-lock-keywords
			highlight-quoted-mode rainbow-delimiters-mode)

Documentation

Highlighting functions that are safe to run in a temporary buffer.

This is used in helpful--syntax-highlight to support extra highlighting that the user may have configured in their mode hooks.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defconst helpful--highlighting-funcs
  '(ert--activate-font-lock-keywords
    highlight-quoted-mode
    rainbow-delimiters-mode)
  "Highlighting functions that are safe to run in a temporary buffer.
This is used in `helpful--syntax-highlight' to support extra
highlighting that the user may have configured in their mode
hooks.")