From ec54a032cb8fe8e6744456173b09c5418a7bf4c8 Mon Sep 17 00:00:00 2001 From: Gina Trapani Date: Thu, 19 Mar 2009 18:37:36 -0700 Subject: [PATCH] Removed edit action --- todo.actions.d/edit | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 todo.actions.d/edit 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