blob: a07c978ea79a3c692b3b801624be997f445e8d88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#compdef efa
typeset -a arguments
arguments=(
'--from:city: :stop: '
'--to:city: :stop: '
'--debug'
'--time:time'
'--time-for:event:(arrival departure)'
'--date:date'
)
_arguments -s $arguments
|