blob: e0e24c62e85aebe741b1a95c7c129c326f6ee56d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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)'
'*--post:POST key=value'
)
_arguments -s $arguments
|