zsh/compdef/_mediathek

9 lines
127 B
Plaintext
Raw Permalink Normal View History

2016-01-05 02:55:24 +00:00
#compdef mediathek
function _mediathek {
typeset -a targets
targets=("${(@f)$(mediathek -l)}")
_describe target targets
}