Function: org-agenda-next-line

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

Signature

(org-agenda-next-line)

Documentation

Move cursor to the next line, and show if follow mode is active.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-next-line ()
  "Move cursor to the next line, and show if follow mode is active."
  (interactive)
  (call-interactively 'next-line)
  (org-agenda-do-context-action))