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