Function: org-agenda-next-item
org-agenda-next-item is an interactive and byte-compiled function
defined in org-agenda.el.gz.
Signature
(org-agenda-next-item N)
Documentation
Move cursor to next agenda item.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-next-item (n)
"Move cursor to next agenda item."
(interactive "p")
(let ((col (current-column)))
(dotimes (_ n)
(when (next-single-property-change (line-end-position) 'org-marker)
(move-end-of-line 1)
(goto-char (next-single-property-change (point) 'org-marker))))
(org-move-to-column col))
(org-agenda-do-context-action))