Variable: forward-thing-provider-alist

forward-thing-provider-alist is a variable defined in thingatpt.el.gz.

Value

nil

Documentation

Alist of providers for moving forward to the end of the next "thing".

This variable can be set globally, or appended to buffer-locally by modes, to provide functions that will move forward to the end of a
"thing" at point. Each function should take a single argument
BACKWARD, which is non-nil if the function should instead move to the beginning of the previous thing. The provider for "thing" that moves point by the smallest non-zero distance 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 forward-thing-provider-alist nil
  "Alist of providers for moving forward to the end of the next \"thing\".
This variable can be set globally, or appended to buffer-locally by
modes, to provide functions that will move forward to the end of a
\"thing\" at point.  Each function should take a single argument
BACKWARD, which is non-nil if the function should instead move to the
beginning of the previous thing.  The provider for \"thing\" that moves
point by the smallest non-zero distance wins.

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