Function: todo-archive-mode

todo-archive-mode is an autoloaded, interactive and byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-archive-mode)

Documentation

Major mode for archived todo categories.

* todo-toggle-mark-item
C * todo-mark-category
C u todo-unmark-category
F H todo-toggle-item-highlighting
F N todo-toggle-prefix-numbers
F c todo-show-categories-table
F e todo-edit-file
F h todo-toggle-item-header
F k todo-delete-file
H todo-toggle-item-highlighting
N todo-toggle-prefix-numbers
P B todo-print-buffer(var)/todo-print-buffer(fun)
P F todo-print-buffer-to-file
S todo-search
X todo-clear-matches
a todo-jump-to-archive-category
b todo-backward-category
f todo-forward-category
h todo-toggle-item-header
j todo-jump-to-category
n todo-next-item
p todo-previous-item
q todo-quit
s todo-save
t todo-show
u todo-unarchive-items

In addition to any hooks its parent mode special-mode might have run, this mode runs the hook todo-archive-mode-hook, as the final or penultimate step during initialization.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
;; If todo-mode is parent, all todo-mode key bindings appear to be
;; available in todo-archive-mode (e.g. shown by C-h m).
;;;###autoload
(define-derived-mode todo-archive-mode special-mode "Todo-Arch"
  "Major mode for archived todo categories.

\\{todo-archive-mode-map}"
  (todo-modes-set-1)
  (todo-modes-set-2)
  (todo-modes-set-3)
  (setq-local todo-current-todo-file (file-truename (buffer-file-name)))
  (setq-local todo-show-done-only t))