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