Function: helpful--bookmark-jump
helpful--bookmark-jump is a byte-compiled function defined in
helpful.el.
Signature
(helpful--bookmark-jump BOOKMARK)
Documentation
Create and switch to helpful bookmark BOOKMARK.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--bookmark-jump (bookmark)
"Create and switch to helpful bookmark BOOKMARK."
(let ((callable-p (bookmark-prop-get bookmark 'callable-p))
(sym (bookmark-prop-get bookmark 'sym))
(position (bookmark-prop-get bookmark 'position)))
(if callable-p
(helpful-callable sym)
(helpful-variable sym))
(goto-char position)))