Function: todo-next-button

todo-next-button is an interactive and byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-next-button N)

Documentation

Move point to the Nth next button in the table of categories.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
  (todo-update-categories-display nil)) ;; sortkey

(defun todo-next-button (n)
  "Move point to the Nth next button in the table of categories."
  (interactive "p")
  (forward-button n 'wrap 'display-message)
  (and (bolp) (button-at (point))
       ;; Align with beginning of category label.
       (forward-char (+ 4 (length todo-categories-number-separator)))))