Added meta info snippet into _afew and reformated

This commit is contained in:
Jindrich Pilar 2016-10-08 17:05:47 +02:00
parent 62592134de
commit a98235687e
1 changed files with 31 additions and 24 deletions

View File

@ -40,30 +40,37 @@
_afew() { _afew() {
_arguments -C \ _arguments -C \
'(- 1 *)'-h"[Show help and exit]" \ '(- 1 *)'-h"[Show help and exit]" \
"(-c -l -t -u -U -m)"-w"[Continuously monitor the mailbox for new messages matching the given query]" \ "(-c -l -t -u -U -m)"-w"[Continuously monitor the mailbox for new messages matching the given query]" \
"(-c -l -w -u -U -m)"-t"[Run the tag filters]" \ "(-c -l -w -u -U -m)"-t"[Run the tag filters]" \
"(-c -t -w -u -U -m)"-l"[Train category with the messages matching query]" \ "(-c -t -w -u -U -m)"-l"[Train category with the messages matching query]" \
"(-c -l -t -w -m)"-u"[Update the categories (requires no query)]" \ "(-c -l -t -w -m)"-u"[Update the categories (requires no query)]" \
"(-c -l -t -w -m)"-U"[Update the reference category (takes quite some time) (requires no query)]" \ "(-c -l -t -w -m)"-U"[Update the reference category (takes quite some time) (requires no query)]" \
"(-l -t -w -u -U -m)"-c"[Classify each message matching the iven query]" \ "(-l -t -w -u -U -m)"-c"[Classify each message matching the iven query]" \
"(-l -t -w -u -U -m)"-m"[Move mail files between maildir folders]" \ "(-l -t -w -u -U -m)"-m"[Move mail files between maildir folders]" \
"(-n)"-a"[Operate on all email]" \ "(-n)"-a"[Operate on all email]" \
"(-a)"-n"[Operate on all new email]" \ "(-a)"-n"[Operate on all new email]" \
-C"[Path to notmuch configuration file]:files:_files" \ -C"[Path to notmuch configuration file]:files:_files" \
-e"[Flter classes to use]:filters" \ -e"[Flter classes to use]:filters" \
-d"[Dont change the DB]" \ -d"[Dont change the DB]" \
-R"[Size of the reference set (default: 1000)]:size:" \ -R"[Size of the reference set (default: 1000)]:size:" \
-T"[Do not use emails older than DAYS days (default: 30)]:days:" \ -T"[Do not use emails older than DAYS days (default: 30)]:days:" \
-v"[Be more verbose]" \ -v"[Be more verbose]" \
'*:Query:' \ '*:Query:' \
case "$state" in case "$state" in
(*) (*)
;; ;;
esac esac
} }
_afew _afew
# Local Variables:
# mode: Shell-Script
# sh-indentation: 2
# indent-tabs-mode: nil
# sh-basic-offset: 2
# End:
# vim: ft=zsh sw=2 ts=2 et