completion: Skip completion lookup for key-only brewed curl

Skip lookup for `_curl` completion function to avoid fallback
completion having higher priority.
This commit is contained in:
Indrajit Raychaudhuri 2021-05-23 19:35:55 -05:00 committed by Indrajit Raychaudhuri
parent 979144d0e4
commit 7052e2a002

View file

@ -7,7 +7,7 @@
#
# Return if requirements are not found.
if [[ "$TERM" == 'dumb' ]]; then
if [[ $TERM == 'dumb' ]]; then
return 1
fi
@ -15,7 +15,7 @@ fi
fpath=("${0:h}/external/src" $fpath)
# Add completion for keg-only brewed curl when available.
if (( $+commands[brew] && ! $+functions[_curl] )) \
if (( $+commands[brew] )) \
&& [[ -d "${curl_prefix::="$(brew --prefix curl 2> /dev/null)"}" ]]; then
fpath=("$curl_prefix/share/zsh/site-functions" $fpath)
unset curl_prefix