9 lines
106 B
Plaintext
9 lines
106 B
Plaintext
#compdef xd
|
|
|
|
function _xd {
|
|
typeset -a targets
|
|
targets=("${(@f)$(xd -l)}")
|
|
_describe target targets
|
|
}
|
|
|