Function: cider-repl--help-button
cider-repl--help-button is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl--help-button LABEL ACTION &optional HELP)
Documentation
Return LABEL as a text button that calls ACTION when activated.
HELP is the help-echo tooltip, defaulting to LABEL.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defun cider-repl--help-button (label action &optional help)
"Return LABEL as a text button that calls ACTION when activated.
HELP is the `help-echo' tooltip, defaulting to LABEL."
(make-text-button (copy-sequence label) nil
'action (lambda (_) (funcall action))
'follow-link t
'help-echo (or help label)))