Function: org-calendar-goto-agenda
org-calendar-goto-agenda is an autoloaded, interactive and
byte-compiled function defined in org-agenda.el.gz.
Signature
(org-calendar-goto-agenda)
Documentation
Compute the Org agenda for the calendar date displayed at the cursor.
This is a command that has to be installed in calendar-mode-map.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
;;;###autoload
(defun org-calendar-goto-agenda ()
"Compute the Org agenda for the calendar date displayed at the cursor.
This is a command that has to be installed in `calendar-mode-map'."
(interactive)
;; Temporarily disable sticky agenda since user clearly wants to
;; refresh view anyway.
(let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
(org-agenda-sticky nil))
(org-agenda-list nil (calendar-absolute-from-gregorian
(calendar-cursor-to-date))
nil)))