summaryrefslogtreecommitdiff
path: root/provides/zsh/completions/_efa
blob: 96fc73760b00fd926f8a783f6bac78f96bd53452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#compdef efa

typeset -a arguments
arguments=(
	'--from:city: :stop: '
	'--to:city: :stop: '
	'--via:city: :stop: '
	'--debug'
	'(--depart --arrive)--time:time'
	'(--depart --time)--arrive:time'
	'(--arrive --time)--depart:time'
	'--date:date'
	'--restrict:type:(local ic ice)'
	'--ignore-info:regex'
	'*--post:POST key=value'
)

_arguments -s $arguments