develop#zsh: check of ~/.zcompdump exists

This commit is contained in:
Timothy DeHerrera 2020-01-06 22:35:33 -07:00
parent 8f52fbd807
commit c6cb43fc21
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -28,6 +28,7 @@ bindkey -M vicmd 'j' history-substring-search-down
#load compinit
autoload -Uz compinit
if [[ -f ~/.zcompdump ]]; then
typeset -i updated_at=$(date +'%j' -r ~/.zcompdump \
|| stat -f '%Sm' -t '%j' ~/.zcompdump)
@ -37,6 +38,9 @@ if [ $(date +'%j') != $updated_at ]; then
else
compinit -C
fi
else
compinit -C
fi
# Case insens only when no case match; after all completions loaded
zstyle ':completion:*' matcher-list \