Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: completion for todo.sh
- X-seq: zsh-workers 22704
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx (Zsh hackers list)
- Subject: PATCH: completion for todo.sh
- Date: Wed, 13 Sep 2006 16:58:49 +0100
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Index: Completion/Unix/Command/_todo.sh
===================================================================
RCS file: Completion/Unix/Command/_todo.sh
diff -N Completion/Unix/Command/_todo.sh
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ Completion/Unix/Command/_todo.sh 13 Sep 2006 15:57:21 -0000
@@ -0,0 +1,106 @@
+#compdef todo.sh
+
+# See http://todotxt.com for todo.sh.
+#
+# Featurettes:
+# - "replace" will complete the original text for editing.
+# - completing priorities will cycle through A to Z (even without
+# menu completion).
+
+setopt localoptions braceccl
+
+local expl curcontext="$curcontext" state line pri nextstate
+local -a cmdlist itemlist
+
+_arguments -s \
+ '-d[alternate config file]:config file:_files' \
+ '-f[force, no confirmation]' \
+ '-h[display help]' \
+ '-p[plain mode, no colours]' \
+ '-v[verbose mode, confirmation messages]' \
+ '-V[display version etc.]' \
+ '1:command:->commands' \
+ '2:first argument:->firstarg' \
+ '3:second argument:->secondarg' && return 0
+
+local txtmsg="text, can include p:<project> and @<where>"
+
+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."
+ )
+ _describe -t todo-commands 'todo.sh command' cmdlist
+ ;;
+
+ (firstarg)
+ case $words[CURRENT-1] in
+ (append|del|do|prepend|pri|replace)
+ itemlist=(${${(M)${(f)"$(todo.sh list)"}##<-> *}/(#b)(<->) (*)/${match[1]}:${match[2]}})
+ _describe -t todo-items 'todo item' itemlist
+ ;;
+
+ (add)
+ _message $txtmsg
+ ;;
+
+ (list|listall)
+ _message search term...
+ ;;
+
+ (listpri)
+ nextstate=pri
+ ;;
+
+ (*)
+ return 1
+ ;;
+ esac
+ ;;
+
+ (secondarg)
+ case $words[CURRENT-2] in
+ (append|prepend)
+ _message $txtmsg
+ ;;
+ (pri)
+ nextstate=pri
+ ;;
+ (replace)
+ compadd -Q -- "${(qq)$(todo.sh list "^0*${words[CURRENT-1]} ")##<-> }"
+ ;;
+ (*)
+ return 1
+ ;;
+ esac
+ ;;
+esac
+
+case $nextstate in
+ (pri)
+ if [[ $words[CURRENT] = (|[A-Z]) ]]; then
+ if [[ $words[CURRENT] = (|Z) ]]; then
+ pri=A
+ else
+ # cycle priority
+ pri=$words[CURRENT]
+ pri=${(#)$(( #pri + 1 ))}
+ fi
+ _wanted priority expl 'priority' compadd -U -S '' -- $pri
+ else
+ _wanted priority expl 'priority' compadd {A-Z}
+ fi
+ ;;
+esac
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK Tel: +44 (0)1223 692070
To access the latest news from CSR copy this link into a web browser: http://www.csr.com/email_sig.php
Messages sorted by:
Reverse Date,
Date,
Thread,
Author