Function: helpful--org-link-store

helpful--org-link-store is a byte-compiled function defined in helpful.el.

Signature

(helpful--org-link-store)

Documentation

Store "help" type link when in a helpful buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--org-link-store ()
  "Store \"help\" type link when in a helpful buffer."
  (when (derived-mode-p 'helpful-mode)
    ;; Create a "help" link instead of a dedicated "helpful" link: the
    ;; author of the Org document uses helpful, but this is not
    ;; necessarily the case of the reader of the document.
    (org-link-store-props :type "help"
                          :link (format "help:%s" helpful--sym)
                          :description nil)))