summaryrefslogtreecommitdiff
path: root/etc/completions/_lighty-stats
blob: c27a9417325a67a6ed21245368b3c4b3001b9dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#compdef lighty-stats
## vim:ft=zsh

local arguments

arguments=(
	'(--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'
	'(--show-days)--no-show-days'
	'(--show-ips)--no-show-ips'
	'(--show-hosts)--no-show-hosts'
	'(--show-status)--no-show-status'
	'(--show-sites)--no-show-sites'
	'*--format'
	'--bytes'
	'--count=-'
	'--match=-'
	'--ignore=-'
	'--pathlength=-'
	'--width=-'
	'--log-format=-'
	'*:file:_files'
)

_arguments -s $arguments