diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-08-19 16:08:30 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-08-19 16:08:30 +0000 |
commit | 49af8cc84787059cd3811593e2d668394e6a35f3 (patch) | |
tree | 95c01db19c871d642cf8361d1fd0b60f6087462f | |
parent | ef9b4ad79e745fc3add4f4a3f4d45cc841214805 (diff) | |
download | zsh-49af8cc84787059cd3811593e2d668394e6a35f3.tar.gz zsh-49af8cc84787059cd3811593e2d668394e6a35f3.tar.xz zsh-49af8cc84787059cd3811593e2d668394e6a35f3.zip |
unposted: more todo.sh commands
-rw-r--r-- | Completion/Unix/Command/_todo.sh | 54 |
1 files changed, 49 insertions, 5 deletions
diff --git a/Completion/Unix/Command/_todo.sh b/Completion/Unix/Command/_todo.sh index 65544b25a..eb0be55e5 100644 --- a/Completion/Unix/Command/_todo.sh +++ b/Completion/Unix/Command/_todo.sh @@ -29,17 +29,30 @@ _arguments -s -n : \ local projmsg="context or project" local txtmsg="text with contexts or projects" +# Skip "command" as command prefix if words after +if [[ $words[NORMARG] == command && NORMARG -lt CURRENT ]]; then + (( NORMARG++ )) +fi + case $state in (commands) cmdlist=( "add:add TODO ITEM to todo.txt." + "addm:add TODO ITEMs, one per line, to todo.txt." + "addto:add text to file (not item)" "append:adds to item on line NUMBER the text TEXT." "archive:moves done items from todo.txt to done.txt." + "command:run internal commands only" "del:deletes the item on line NUMBER in todo.txt." + "depri:remove prioritization from item" "do:marks item on line NUMBER as done in todo.txt." + "help:display help" "list:displays all todo items containing TERM(s), sorted by priority." "listall:displays items including done ones containing TERM(s)" + "listcon:list all contexts" + "listfile:display all files in .todo directory" "listpri:displays all items prioritized at PRIORITY." + "move:move item between files" "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." @@ -51,10 +64,9 @@ case $state in (arguments) case $words[NORMARG] in - (append|del|do|prepend|pri|replace) + (append|command|del|move|mv|prepend|pri|replace|rm) if (( NORMARG == CURRENT - 1 )); then - itemlist=(${${(M)${(f)"$(todo.sh -p list | sed '/^--/,$d')"}##<-> *}/(#b)(<->) (*)/${match[1]}:${match[2]}}) - _describe -t todo-items 'todo item' itemlist + nextstate=item else case $words[NORMARG] in (pri) @@ -63,6 +75,9 @@ case $state in (append|prepend) nextstate=proj ;; + (move|mv) + nextstate=file + ;; (replace) item=${words[CURRENT-1]##0##} compadd -Q -- "${(qq)$(todo.sh -p list "^[ 0]*$item " | sed '/^--/,$d')##<-> (\([A-Z]\) |)}" @@ -71,11 +86,31 @@ case $state in fi ;; - (add|list|listall) + (depri|do|dp) + nextstate=item + ;; + + (a|add|addm|list|ls|listall|lsa) nextstate=proj ;; - (listpri) + (addto) + if (( NORMARG == CURRENT - 1 )); then + nextstate=file + else + nexstate=proj + fi + ;; + + (listfile|lf) + if (( NORMARG == CURRENT -1 )); then + nextstate=file + else + _message "Term to search file for" + fi + ;; + + (listpri|lsp) nextstate=pri ;; @@ -87,6 +122,15 @@ case $state in esac case $nextstate in + (file) + _path_files -W ~/.todo + ;; + + (item) + itemlist=(${${(M)${(f)"$(todo.sh -p list | sed '/^--/,$d')"}##<-> *}/(#b)(<->) (*)/${match[1]}:${match[2]}}) + _describe -t todo-items 'todo item' itemlist + ;; + (pri) if [[ $words[CURRENT] = (|[A-Z]) ]]; then if [[ $words[CURRENT] = (|Z) ]]; then |