我似乎无法找到一种方法来调用zsh完成函数,我可以使用它来提供可用项的返回结果。例如,我希望能够呼叫Web服务并返回一系列潜力。
我尝试过这样的事情:
#compdef test
local arguments
_run(){
reply=(1 2 3)
}
arguments=(
'--test[foo]:bar:_run'
)
_arguments -s $arguments
如果我在_run
函数中放置了一个echo,我可以看到它被执行了,但是zsh总是说没有匹配
答案 0 :(得分:2)
我花了一些时间来解决这个问题(只是因为我从brew
zsh完成文件中偷了它:
#compdef test
local arguments
_run(){
val=(1 2 3)
_wanted val expl "Items" compadd -a val
}
_biz(){
val=(4 5 6)
_wanted val expl "Biz" compadd -a val
}
local expl
local -a val
arguments=(
'--test[foo]:bar:_run'
'--biz[boo]:boo:_biz'
)
_arguments $arguments
现在你可以做到
$ test --test
-- Items --
1 2 3
和
$ test --test 2 --biz 4
-- Biz --
4 5 6