Skip to content

Commit

Permalink
Add 'done' option as alias of 'do' (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
kh80 authored and karbassi committed Apr 11, 2018
1 parent 7a30199 commit d589fd0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions todo.sh
Expand Up @@ -51,7 +51,7 @@ shorthelp()
deduplicate
del|rm ITEM# [TERM]
depri|dp ITEM#[, ITEM#, ITEM#, ...]
do ITEM#[, ITEM#, ITEM#, ...]
done|do ITEM#[, ITEM#, ITEM#, ...]
help [ACTION...]
list|ls [TERM...]
listall|lsa [TERM...]
Expand Down Expand Up @@ -201,6 +201,7 @@ actionsHelp()
Deprioritizes (removes the priority) from the task(s)
on line ITEM# in todo.txt.
done ITEM#[, ITEM#, ITEM#, ...]
do ITEM#[, ITEM#, ITEM#, ...]
Marks task(s) on line ITEM# as done in todo.txt.
Expand Down Expand Up @@ -1193,7 +1194,7 @@ case $action in
done
;;

"do" )
"do" | "done" )
errmsg="usage: $TODO_SH do ITEM#[, ITEM#, ITEM#, ...]"
# shift so we get arguments to the do request
shift;
Expand Down

0 comments on commit d589fd0

Please sign in to comment.