zsh/compdef/_xd

9 lines
106 B
Plaintext
Raw Permalink Normal View History

2016-07-22 14:01:35 +00:00
#compdef xd
function _xd {
typeset -a targets
targets=("${(@f)$(xd -l)}")
_describe target targets
}