Variable: todo-archive-mode-map
todo-archive-mode-map is a variable defined in todo-mode.el.gz.
Value
* 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
Documentation
Todo Archive mode keymap.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defvar todo-archive-mode-map
(let ((map (make-sparse-keymap)))
(dolist (kb todo-key-bindings-t+a+f)
(define-key map (nth 0 kb) (nth 1 kb)))
(dolist (kb todo-key-bindings-t+a)
(define-key map (nth 0 kb) (nth 1 kb)))
(define-key map "a" #'todo-jump-to-archive-category)
(define-key map "u" #'todo-unarchive-items)
map)
"Todo Archive mode keymap.")