Variable: todo-key-bindings-t

todo-key-bindings-t is a variable defined in todo-mode.el.gz.

Value

Large value
(("Af" todo-find-archive)
 ("Ac" todo-choose-archive)
 ("Ad" todo-archive-done-item)
 ("Cv" todo-toggle-view-done-items)
 ("v" todo-toggle-view-done-items)
 ("Ca" todo-add-category)
 ("Cr" todo-rename-category)
 ("Cg" todo-merge-category)
 ("Cm" todo-move-category)
 ("Ck" todo-delete-category)
 ("Cts" todo-set-top-priorities-in-category)
 ("Cey" todo-edit-category-diary-inclusion)
 ("Cek" todo-edit-category-diary-nonmarking)
 ("Fa" todo-add-file)
 ("Fr" todo-rename-file)
 ("Ff" todo-find-filtered-items-file)
 ("FV" todo-toggle-view-done-only)
 ("V" todo-toggle-view-done-only)
 ("Ftt" todo-filter-top-priorities)
 ("Ftm" todo-filter-top-priorities-multifile)
 ("Fts" todo-set-top-priorities-in-file)
 ("Fyy" todo-filter-diary-items)
 ("Fym" todo-filter-diary-items-multifile)
 ("Fxx" todo-filter-regexp-items)
 ("Fxm" todo-filter-regexp-items-multifile)
 ("e" todo-edit-item)
 ("d" todo-item-done)
 ("i" todo-insert-item)
 ("k" todo-delete-item)
 ("m" todo-move-item)
 ("u" todo-item-undone))

Documentation

List of key bindings for Todo mode only.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
;; -----------------------------------------------------------------------------
;;; Key binding
;; -----------------------------------------------------------------------------

(defvar todo-key-bindings-t
  '(("Af"	     todo-find-archive)
    ("Ac"	     todo-choose-archive)
    ("Ad"	     todo-archive-done-item)
    ("Cv"	     todo-toggle-view-done-items)
    ("v"	     todo-toggle-view-done-items)
    ("Ca"	     todo-add-category)
    ("Cr"	     todo-rename-category)
    ("Cg"	     todo-merge-category)
    ("Cm"	     todo-move-category)
    ("Ck"	     todo-delete-category)
    ("Cts"	     todo-set-top-priorities-in-category)
    ("Cey"	     todo-edit-category-diary-inclusion)
    ("Cek"	     todo-edit-category-diary-nonmarking)
    ("Fa"	     todo-add-file)
    ("Fr"	     todo-rename-file)
    ("Ff"	     todo-find-filtered-items-file)
    ("FV"	     todo-toggle-view-done-only)
    ("V"	     todo-toggle-view-done-only)
    ("Ftt"	     todo-filter-top-priorities)
    ("Ftm"	     todo-filter-top-priorities-multifile)
    ("Fts"	     todo-set-top-priorities-in-file)
    ("Fyy"	     todo-filter-diary-items)
    ("Fym"	     todo-filter-diary-items-multifile)
    ("Fxx"	     todo-filter-regexp-items)
    ("Fxm"	     todo-filter-regexp-items-multifile)
    ("e"	     todo-edit-item)
    ("d"	     todo-item-done)
    ("i"	     todo-insert-item)
    ("k"	     todo-delete-item)
    ("m"	     todo-move-item)
    ("u"	     todo-item-undone))
  "List of key bindings for Todo mode only.")