Function: todo-sort-categories-by-todo

todo-sort-categories-by-todo is an interactive and byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-sort-categories-by-todo)

Documentation

Sort table of categories by number of todo items.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-sort-categories-by-todo ()
  "Sort table of categories by number of todo items."
  (interactive)
  (save-excursion
    (goto-char (point-min))
    (forward-line 2)
    (todo-update-categories-display 'todo)))