dev-perso: also check for lowercase todo[.org]

This commit is contained in:
François Revol 2016-05-22 21:06:19 +02:00
parent a59423af8d
commit 836a148321
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ dev() {
esac
# check for a TODO list
for f in TODO TODO.org; do
for f in TODO TODO.org todo todo.org; do
test -e "$f" && grep '^* ' "$f" | grep --color=always ' TODO ' | head -5 && break
done