| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /usr/share/zsh/4.3.11/functions/ |
| Current File : //usr/share/zsh/4.3.11/functions/_analyseplugin |
#compdef analyseplugin
local expl context state line nopts ret=1
typeset -A opt_args
_arguments \
'-l[gives a brief listing (one line per plugin)]' \
'(-)1:plugin file:->pfile' \
'(-)2::plugin label:->plabel' && ret=0
case "$state" in
pfile)
_wanted plugin-files expl 'plugin file' compadd \
${~${^${${(f)"$(_call_program ladspa-plugins listplugins 2> /dev/null)"}:#[[:space:]]*}/%:/(:t:r)}} \
&& return
;;
plabel)
typeset -a plabel
nopts=(${words:#-*})
plabel=(${${(f)"$($nopts[1] -l $nopts[2] 2> /dev/null)"}/[[:space:]]##/:})
_describe -t plugin-label 'plugin label' plabel && return
;;
esac
return ret