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