The function-link Widget
Syntax:
bash
type ::= (function-link [keyword argument]... function)A widget to represent a link to an Emacs function. Its super is the link widget.
It overrides the :action property, to a function to describe function.
Example:
emacs-lisp
(widget-create 'function-link
:button-prefix ""
:button-suffix ""
:tag "Describe the function that gets called"
#'widget-function-link-action)