Function: org-info

org-info is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-info &optional NODE)

Documentation

Read documentation for Org in the info system.

With optional NODE, go directly to that node.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-info (&optional node)
  "Read documentation for Org in the info system.
With optional NODE, go directly to that node."
  (interactive)
  (info (format "(org)%s" (or node ""))))