Function: cider-browse-ns-doc-at-point

cider-browse-ns-doc-at-point is an interactive and byte-compiled function defined in cider-browse-ns.el.

Signature

(cider-browse-ns-doc-at-point)

Documentation

Show the documentation for the thing at current point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-browse-ns.el
(defun cider-browse-ns-doc-at-point ()
  "Show the documentation for the thing at current point."
  (interactive)
  (let* ((thing (cider-browse-ns--thing-at-point))
         (value (cadr thing)))
    ;; value is either some ns or a var
    (cider-doc-lookup value)))