Function: org-agenda-earlier

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

Signature

(org-agenda-earlier ARG)

Documentation

Go backward in time by the current span in the agenda buffer.

With prefix ARG, go backward that many times the current span.

See also:
 org-agenda-later (M-x org-agenda-later (org-agenda-later))
 org-agenda-goto-today (M-x org-agenda-goto-today (org-agenda-goto-today))
 org-agenda-goto-date (M-x org-agenda-goto-date (org-agenda-goto-date))

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-earlier (arg)
  "Go backward in time by the current span in the agenda buffer.
With prefix ARG, go backward that many times the current span.

See also:
 `org-agenda-later'      (\\[org-agenda-later])
 `org-agenda-goto-today' (\\[org-agenda-goto-today])
 `org-agenda-goto-date'  (\\[org-agenda-goto-date])"
  (interactive "p")
  (org-agenda-later (- arg)))