Function: helpful--support-storing-org-links

helpful--support-storing-org-links is a byte-compiled function defined in helpful.el.

Signature

(helpful--support-storing-org-links)

Documentation

Make org-store-link in a helpful buffer return a "help" link.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--support-storing-org-links ()
  "Make `org-store-link' in a helpful buffer return a \"help\" link."
  (when (and (fboundp 'org-link-set-parameters)
             (not (-contains-p (org-link-types) "helpful")))
    (org-link-set-parameters "helpful"
                             :store #'helpful--org-link-store)))