Deutsch | English
  

Palm Command Line Tools/todo.el

Installation

  • Copy todo.el to where you keep your *.el files. For example ~/.xemacs/
  • Change todo-cmndname, todo-editcmd and todo-newcmd at the top of todo.el to reflect your system.
  • Add the following line to your [X]Emacs initialization file:
    (load "~/.xemacs/todo.el")

  • Configure a shortcut for the todos.
    (global-set-key [(control c) t] 'todo-show)

Key bindings

Actions
<space>Toggle done
C-dDelete item
eEdit item
+New todo
*Extended new todo
hToggle help
qQuit
Options
aToggles whether only today's todos should be shown, or all.
dToggles whether done todos should be shown.
nToggles whether notes should be shown.
cSelect the category to show.
CToggles whether all categories should be shown. This overrides c.
pSelect the highest priority to show.
Default values for the options can be set at the top of todo.el.

Tips

  • You can enter a newline in the minibuffer by entering C-q C-j.
  • If you just want to press C-c n in any buffer to create a new todo from the current line, add the following to your [X]Emacs initialization file:
    (global-set-key [(control c) n]  'todo-new)

  • If you want to be asked for category, date, priority and a note, press C-u C-c t.

Clemens Resanka