diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Base/_default | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Completion/Base/_default b/Completion/Base/_default index 8329a0358..b84cbff6a 100644 --- a/Completion/Base/_default +++ b/Completion/Base/_default @@ -1,16 +1,16 @@ #compdef -default- -# You can first try the `compctl's by uncommenting the `compcall' line -# below. -# This is without first (-T) and default (-D) completion. If you want -# them add `-T' and/or `-D' to this command. If there is a `compctl' -# for the command we are working on, we return immediatly. If you want -# to use new style completion anyway, remove the `|| return'. Also, -# you may want to use new style completion if the `compctl' didn't -# produce any matches. In that case remove the `|| return' and insert -# the line `[[ compstate[nmatches] -eq 0 ]] || return' after `compcall'. +local ctl -# compcall || return 0 +if { zstyle -s ':completion:${curcontext}:' use-compctl ctl || + zmodload -e zsh/compctl } && [[ "$ctl" != (no|false|0|off) ]]; then + local opt + + opt=() + [[ "$ctl" = *first* ]] && opt=(-T) + [[ "$ctl" = *default* ]] && opt=("$opt[@]" -D) + compcall "$opt[@]" || return 0 +fi _tags files || return 1 |