Function: helpful--buffer-button
helpful--buffer-button is a byte-compiled function defined in
helpful.el.
Signature
(helpful--buffer-button BUFFER &optional POS)
Documentation
Return a button that switches to BUFFER and puts point at POS.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--buffer-button (buffer &optional pos)
"Return a button that switches to BUFFER and puts point at POS."
(helpful--button
(buffer-name buffer)
'helpful-buffer-button
'buffer buffer
'position pos))