mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 04:40:59 +01:00
users/15204: in zfinit check for compctl before using
This commit is contained in:
parent
4de3dbac16
commit
93e0bc094f
2 changed files with 6 additions and 2 deletions
|
|
@ -34,7 +34,8 @@ autoload -Uz zfstat zftp_chpwd zftp_progress zftransfer zftype zfuget zfuput
|
|||
# zftp completions: only use these if new-style completion is not
|
||||
# active.
|
||||
#
|
||||
if [[ ${#_patcomps} -eq 0 || -z ${_patcomps[(r)_zf*]} ]]; then
|
||||
if [[ ${#_patcomps} -eq 0 || -z ${_patcomps[(r)_zf*]} ]] &&
|
||||
(compctl >/dev/null 2>&1); then
|
||||
# only way of getting that noglob out of the way: this is unnecessary with
|
||||
# widget-based completion
|
||||
setopt completealiases
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue