.
Let users override default commands by creating a script in
~/.todo.actions.d/ with the same name as a default command. Idea by Don
Harper and David A. Harding; patch by Harding.
.
The patch adds the following logic and increases the indent level for
the case statement:
.
+if [ -d "$HOME/.todo.actions.d" -a -x "$HOME/.todo.actions.d/$action" ]
+then
+ CFG_FILE="$CFG_FILE" "$HOME/.todo.actions.d/$action" "$@"
+else
+ case $action in
.
Adds three new switches that hide priorty, context, and project text in
list output.
.
Changes proposed by Dave Hein. Original patch by Dave Hein. Revised
patch by David A. Harding. Thread starts at
http://tech.groups.yahoo.com/group/todotxt/message/1848