zsh/compdef/_xd
Alexander Gehrke (crater2150) 05f6bf7007 Various small additions
2016-07-22 16:01:35 +02:00

9 lines
106 B
Plaintext

#compdef xd
function _xd {
typeset -a targets
targets=("${(@f)$(xd -l)}")
_describe target targets
}