如何扩展现有的zsh补全功能?

如何扩展现有的zsh补全功能?

我正在尝试为一些自定义 ant 参数添加自动完成功能。然而,它似乎覆盖了我想保留的现有 oh my zsh ant 插件自动完成功能。有没有一种简单的方法可以让 oh my zsh 插件和我的自定义 ant 自动完成功能和谐相处?

这是现有的插件~/.oh-my-zsh/plugins/ant/ant.plugin.zsh

_ant_does_target_list_need_generating () {
  [ ! -f .ant_targets ] && return 0;
  [ build.xml -nt .ant_targets ] && return 0;
  return 1;
}

_ant () {
  if [ -f build.xml ]; then
    if _ant_does_target_list_need_generating; then
        ant -p | awk -F " " 'NR > 5 { print lastTarget }{lastTarget = $1}' > .ant_targets
    fi
    compadd -- `cat .ant_targets`
  fi
}

compdef _ant ant

我的自动完成时间为~/my_completions/_ant

#compdef ant

_arguments '-Dprop=-[properties file]:filename:->files' '-Dsrc=-[build directory]:directory:_files -/'
case "$state" in
    files)
        local -a property_files
        property_files=( *.properties )
        _multi_parts / property_files
        ;;
esac

这是我的$fpath,我的完成路径位于列表中的较早位置,我想这就是为什么我的脚本获得优先权的原因。

/Users/myusername/my_completions /Users/myusername/.oh-my-zsh/plugins/git /Users/myusername/.oh-my-zsh/functions /Users/myusername/.oh-my-zsh/completions /usr/local/share/zsh/site-functions /usr/share/zsh/site-functions /usr/share/zsh/5.0.8/functions

答案1

我认为最好的方法是扩展完成功能。您可以这样做: https://unix.stackexchange.com/a/450133

首先,您需要找到现有函数的名称,为此,您可以绑定_complete_help到 CTRL-h (或任何其他快捷键),然后键入命令并查找补全函数。下面是一个为 git 运行它的示例:

% bindkey '^h' _complete_help  
% git [press ctrl-h]
tags in context :completion::complete:git::
    argument-1 options  (_arguments _git)
tags in context :completion::complete:git:argument-1:
    aliases main-porcelain-commands user-commands third-party-commands ancillary-manipulator-commands ancillary-interrogator-commands interaction-commands plumbing-manipulator-commands plumbing-interrogator-commands plumbing-sync-commands plumbing-sync-helper-commands plumbing-internal-helper-commands  (_git_commands _git)

在这种情况下,补全函数是_git。接下来你可以.zshrc像这样重新定义它:

# Call the function to make sure that it is loaded.
_git 2>/dev/null
# Save the original function.
functions[_git-orig]=$functions[_git]
# Redefine your completion function referencing the original.
_git() {
    _git-orig "$@"
    ...
}

您不需要compdef再次调用,因为它已经绑定到该函数,并且您只是更改了函数定义。

相关内容