summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_todo.sh
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2010-06-06 13:44:11 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2010-06-06 13:44:11 +0000
commita54fdc70be299a203a51d69c4e823f209a4c06ca (patch)
tree6d1c67674d388e1ca64c4210e283d1bd11eea2c7 /Completion/Unix/Command/_todo.sh
parent4ad0a25af110e2afe956bce13e901f78fd9e6bcd (diff)
downloadzsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/Unix/Command/_todo.sh')
-rw-r--r--Completion/Unix/Command/_todo.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/Completion/Unix/Command/_todo.sh b/Completion/Unix/Command/_todo.sh
index 3bae98b1a..799be5427 100644
--- a/Completion/Unix/Command/_todo.sh
+++ b/Completion/Unix/Command/_todo.sh
@@ -32,19 +32,19 @@ local txtmsg="text with contexts or projects"
case $state in
(commands)
cmdlist=(
- "add:Add TODO ITEM to todo.txt."
- "append:Adds to item on line NUMBER the text TEXT."
- "archive:Moves done items from todo.txt to done.txt."
- "del:Deletes the item on line NUMBER in todo.txt."
- "do:Marks item on line NUMBER as done in todo.txt."
- "list:Displays all todo items containing TERM(s), sorted by priority."
- "listall:Displays items including done ones containing TERM(s)"
- "listpri:Displays all items prioritized at PRIORITY."
- "prepend:Adds to the beginning of the item on line NUMBER text TEXT."
- "pri:Adds or replace in NUMBER the priority PRIORITY (upper case letter)."
- "replace:Replace in NUMBER the TEXT."
- "remdup:Remove exact duplicates from todo.txt."
- "report:Adds the number of open and done items to report.txt."
+ "add:add TODO ITEM to todo.txt."
+ "append:adds to item on line NUMBER the text TEXT."
+ "archive:moves done items from todo.txt to done.txt."
+ "del:deletes the item on line NUMBER in todo.txt."
+ "do:marks item on line NUMBER as done in todo.txt."
+ "list:displays all todo items containing TERM(s), sorted by priority."
+ "listall:displays items including done ones containing TERM(s)"
+ "listpri:displays all items prioritized at PRIORITY."
+ "prepend:adds to the beginning of the item on line NUMBER text TEXT."
+ "pri:adds or replace in NUMBER the priority PRIORITY (upper case letter)."
+ "replace:replace in NUMBER the TEXT."
+ "remdup:remove exact duplicates from todo.txt."
+ "report:adds the number of open and done items to report.txt."
)
_describe -t todo-commands 'todo.sh command' cmdlist
;;