Variable: bounds-of-thing-at-point-provider-alist

bounds-of-thing-at-point-provider-alist is a variable defined in thingatpt.el.gz.

Value

nil

Documentation

Alist of providers to return the bounds of a "thing" at point.

This variable can be set globally, or appended to buffer-locally by modes, to provide functions that will return the bounds of a "thing" at point. The first provider for the "thing" that returns a non-nil value wins.

You can use this variable in much the same way as thing-at-point-provider-alist (which see).

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/thingatpt.el.gz
(defvar bounds-of-thing-at-point-provider-alist nil
  "Alist of providers to return the bounds of a \"thing\" at point.
This variable can be set globally, or appended to buffer-locally by
modes, to provide functions that will return the bounds of a \"thing\"
at point.  The first provider for the \"thing\" that returns a non-nil
value wins.

You can use this variable in much the same way as
`thing-at-point-provider-alist' (which see).")