Compare commits
2 Commits
archive/in
...
archive/co
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c6467d90aa | ||
|
|
ddd3e9711b |
@@ -81,6 +81,6 @@ test_todo_session 'fail multiple do attempts' <<EOF
|
|||||||
TODO: 3 marked as done.
|
TODO: 3 marked as done.
|
||||||
|
|
||||||
>>> todo.sh -a do 3
|
>>> todo.sh -a do 3
|
||||||
3 is already marked done
|
TODO: 3 is already marked done.
|
||||||
EOF
|
EOF
|
||||||
test_done
|
test_done
|
||||||
|
|||||||
@@ -68,4 +68,30 @@ TODO: 2 deprioritized.
|
|||||||
TODO: 3 of 3 tasks shown
|
TODO: 3 of 3 tasks shown
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
cat > todo.txt <<EOF
|
||||||
|
(B) smell the uppercase Roses +flowers @outside
|
||||||
|
(A) notice the sunflowers
|
||||||
|
stop
|
||||||
|
EOF
|
||||||
|
test_todo_session 'depriority of unprioritized task' <<EOF
|
||||||
|
>>> todo.sh -p list
|
||||||
|
2 (A) notice the sunflowers
|
||||||
|
1 (B) smell the uppercase Roses +flowers @outside
|
||||||
|
3 stop
|
||||||
|
--
|
||||||
|
TODO: 3 of 3 tasks shown
|
||||||
|
|
||||||
|
>>> todo.sh depri 3 2
|
||||||
|
TODO: 3 is not prioritized.
|
||||||
|
2 notice the sunflowers
|
||||||
|
TODO: 2 deprioritized.
|
||||||
|
|
||||||
|
>>> todo.sh -p list
|
||||||
|
1 (B) smell the uppercase Roses +flowers @outside
|
||||||
|
2 notice the sunflowers
|
||||||
|
3 stop
|
||||||
|
--
|
||||||
|
TODO: 3 of 3 tasks shown
|
||||||
|
EOF
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|||||||
9
todo.sh
9
todo.sh
@@ -921,10 +921,7 @@ case $action in
|
|||||||
todo=$(sed "$item!d" "$TODO_FILE")
|
todo=$(sed "$item!d" "$TODO_FILE")
|
||||||
[ -z "$todo" ] && die "TODO: No task $item."
|
[ -z "$todo" ] && die "TODO: No task $item."
|
||||||
|
|
||||||
sed -e $item"s/^(.) //" "$TODO_FILE" > /dev/null 2>&1
|
if sed "$item!d" "$TODO_FILE" | grep "^(.) " > /dev/null; then
|
||||||
|
|
||||||
if [ "$?" -eq 0 ]; then
|
|
||||||
#it's all good, continue
|
|
||||||
sed -i.bak -e $item"s/^(.) //" "$TODO_FILE"
|
sed -i.bak -e $item"s/^(.) //" "$TODO_FILE"
|
||||||
if [ $TODOTXT_VERBOSE -gt 0 ]; then
|
if [ $TODOTXT_VERBOSE -gt 0 ]; then
|
||||||
NEWTODO=$(sed "$item!d" "$TODO_FILE")
|
NEWTODO=$(sed "$item!d" "$TODO_FILE")
|
||||||
@@ -932,7 +929,7 @@ case $action in
|
|||||||
echo "TODO: $item deprioritized."
|
echo "TODO: $item deprioritized."
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
die "$errmsg"
|
echo "TODO: $item is not prioritized."
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
@@ -964,7 +961,7 @@ case $action in
|
|||||||
echo "TODO: $item marked as done."
|
echo "TODO: $item marked as done."
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "$item is already marked done"
|
echo "TODO: $item is already marked done."
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user