blob: 92f3bad6b6842c695471fc28d9e3d7f37fa20c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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'
'--max-change:number'
'--prefer:type:(speed nowait nowalk)'
'--proximity'
'--restrict:type:(local ic ice)'
'--ignore-info:regex'
'*--post:POST key=value'
)
_arguments -s $arguments
|