Function: org-agenda-show
org-agenda-show is an interactive and byte-compiled function defined
in org-agenda.el.gz.
Signature
(org-agenda-show &optional FULL-ENTRY)
Documentation
Display the Org file which contains the item at point.
With prefix argument FULL-ENTRY, make the entire entry visible if it was hidden in the outline.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-show (&optional full-entry)
"Display the Org file which contains the item at point.
With prefix argument FULL-ENTRY, make the entire entry visible
if it was hidden in the outline."
(interactive "P")
(let ((win (selected-window)))
(org-agenda-goto t)
(when full-entry (org-fold-show-entry 'hide-drawers))
(select-window win)))