Zsh compdef 用于 apt-get install,或其他两部分命令

Zsh compdef 用于 apt-get install,或其他两部分命令

如何使用 compdef 进行 zsh 补全,以便自定义编写的函数使用两部分命令进行补全?

例子:

my_function () {
    sudo apt-get install $@
}

compdef my_function=<WHAT GOES HERE?>
compdef my_function=apt-get install # DOESN'T WORK
compdef my_function='apt-get install' # ALSO NO

任何帮助都将不胜感激,谢谢!

相关内容