Function: dash-register-info-lookup
dash-register-info-lookup is an autoloaded, interactive and
byte-compiled function defined in dash.el.
Signature
(dash-register-info-lookup)
Documentation
Register the Dash Info manual with info-lookup-symbol.
This allows Dash symbols to be looked up with C-h S (info-lookup-symbol).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
;;;###autoload
(defun dash-register-info-lookup ()
"Register the Dash Info manual with `info-lookup-symbol'.
This allows Dash symbols to be looked up with \\[info-lookup-symbol]."
(interactive)
(require 'info-look)
(let ((docs (dash--info-elisp-docs)))
(setcar docs (append (car docs) (list dash--info-doc-spec)))
(info-lookup-reset)))