diff --git a/todo.actions.d/edit b/todo.actions.d/edit deleted file mode 100755 index f13ba19..0000000 --- a/todo.actions.d/edit +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -case $1 in -"usage") - echo "$(basename $0) [BASENAME]" - echo " Open \$TODO_DIR/BASENAME.txt in \$EDITOR." - echo " If BASENAME is not given, defaults to 'todo'." - ;; -*) - FILE=${2:-todo}.txt - $EDITOR $TODO_DIR/$FILE - ;; -esac