Variable: todo-skip-archived-categories
todo-skip-archived-categories is a customizable variable defined in
todo-mode.el.gz.
Value
nil
Documentation
Non-nil to handle categories with only archived items specially.
Sequential category navigation using M-x todo-forward-category (todo-forward-category)
or M-x todo-backward-category (todo-backward-category) skips categories that contain only
archived items. Other commands still recognize these categories.
In Todo Categories mode (M-x todo-show-categories-table (todo-show-categories-table)) these
categories shown in todo-archived-only face and pressing the
category button visits the category in the archive instead of the
todo file.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
;; -----------------------------------------------------------------------------
;;; Navigation between and within categories
;; -----------------------------------------------------------------------------
(defcustom todo-skip-archived-categories nil
"Non-nil to handle categories with only archived items specially.
Sequential category navigation using \\[todo-forward-category]
or \\[todo-backward-category] skips categories that contain only
archived items. Other commands still recognize these categories.
In Todo Categories mode (\\[todo-show-categories-table]) these
categories shown in `todo-archived-only' face and pressing the
category button visits the category in the archive instead of the
todo file."
:type 'boolean
:group 'todo-display)