Function: help-goto-info

help-goto-info is an interactive and byte-compiled function defined in help-mode.el.gz.

Signature

(help-goto-info)

Documentation

View the *info* node of the current help item.

Probably introduced at or before Emacs version 28.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
(defun help-goto-info ()
  "View the *info* node of the current help item."
  (interactive nil help-mode)
  (unless help-mode--current-data
    (error "No symbol to look up in the current buffer"))
  (info-lookup-symbol (plist-get help-mode--current-data :symbol)
                      'emacs-lisp-mode))