Function: org-agenda-execute
org-agenda-execute is an interactive and byte-compiled function
defined in org-agenda.el.gz.
Signature
(org-agenda-execute ARG)
Documentation
Execute another agenda command, keeping same window.
So this is just a shortcut for M-x org-agenda (org-agenda), available
in the agenda.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-execute (arg)
"Execute another agenda command, keeping same window.
So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
in the agenda."
(interactive "P")
(let ((org-agenda-window-setup 'current-window))
(org-agenda arg)))