diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-14 15:45:30 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-14 15:45:30 +0200 |
commit | f278d37abc7ab4bffecb2b965c52e1d30584372c (patch) | |
tree | 16f84a483fd1736fe6cfe51a9ddac7925e387f47 /etc/completions | |
parent | bae4acbe843e9611d0b5f8b38ba2dc6ed1b50713 (diff) |
Began lighty-stats completion
Diffstat (limited to 'etc/completions')
-rw-r--r-- | etc/completions/_lighty-stats | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/etc/completions/_lighty-stats b/etc/completions/_lighty-stats new file mode 100644 index 0000000..a4a987b --- /dev/null +++ b/etc/completions/_lighty-stats @@ -0,0 +1,21 @@ +#compdef lighty-stats +## vim:ft=zsh + +local options + +options=( + '(--no-show-days)--show-days' + '(--no-show-ips)--show-ips' + '(--no-show-hosts)--show-hosts' + '(--no-show-status)--show-status' + '(--no-show-sites)--show-sites' + '*--format=' + '--bytes' + '--count=' + '--match=' + '--ignore=' + '--pathlength=' + '--width=' + '' +) +_arguments -s $options |