diff options
-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 |