git-auto-fetch: override zle-line-init only if it exists

master
Marc Cornellà 7 years ago committed by GitHub
parent 4974143745
commit 28232904be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

@ -18,10 +18,18 @@ function git-auto-fetch {
echo "${fg_bold[red]}disabled${reset_color}") echo "${fg_bold[red]}disabled${reset_color}")
} }
eval "override-git-auto-fetch-$(declare -f zle-line-init)" # Override zle-line-init if it exists
if (( $+functions[zle-line-init] )); then
eval "override-git-auto-fetch-$(declare -f zle-line-init)"
function zle-line-init () { function zle-line-init () {
git-fetch-all git-fetch-all
override-git-auto-fetch-zle-line-init override-git-auto-fetch-zle-line-init
} }
else
function zle-line-init () {
git-fetch-all
}
fi
zle -N zle-line-init zle -N zle-line-init

Loading…
Cancel
Save