1
0
Fork 0
mirror of synced 2024-11-26 17:25:35 -05:00

[completion] Consider the zcompdump_file variable

that could be defined in `.zimrc`, when doing the zcompile in
the completion module and when cleaning the cache.

A custom `${zcompdump_file}` would not be zcompiled or cleaned from the
cache without this correction.

Also, use zrecompile instead of the custom logic to call zcompile.
This commit is contained in:
Eric Nielsen 2017-09-26 17:16:26 -05:00
parent a4f6b757be
commit 3660b6f00b
3 changed files with 6 additions and 10 deletions

View file

@ -23,13 +23,8 @@ source ${0:h}/compdefs.zsh
{ {
# zcomple the .zcompdump in the background # zcomple the .zcompdump in the background
zcompdump=${ZDOTDIR:-${HOME}}/.zcompdump autoload -U zrecompile
zrecompile -pq ${ZDOTDIR:-${HOME}}/${zcompdump_file:-.zcompdump}
if [[ -s ${zcompdump} && ( ! -s ${zcompdump}.zwc || ${zcompdump} -nt ${zcompdump}.zwc) ]]; then
zcompile ${zcompdump}
fi
unset zcompdump
} &! } &!

View file

@ -25,7 +25,7 @@ case ${1} in
;; ;;
issue) zsh ${tools}/zim_issue issue) zsh ${tools}/zim_issue
;; ;;
clean-cache) zsh ${tools}/zim_clean_cache && print 'Cleaned cache' clean-cache) source ${tools}/zim_clean_cache && print 'Cleaned cache'
;; ;;
build-cache) source ${tools}/zim_build_cache && print 'Rebuilt cache' build-cache) source ${tools}/zim_build_cache && print 'Rebuilt cache'
;; ;;

View file

@ -2,7 +2,8 @@
# zim_clean_cache - removes all zcompiled files # zim_clean_cache - removes all zcompiled files
# #
find ${ZIM_HOME} -iname '*.zwc' | xargs rm find ${ZIM_HOME} -iname '*.zwc' -delete
rm -f ${ZDOTDIR:-${HOME}}/.{zshrc.zwc,zcompdump,zcompdump.zwc} rm -f ${ZDOTDIR:-${HOME}}/.zshrc.zwc
rm -f ${ZDOTDIR:-${HOME}}/${zcompdump_file:-.zcompdump}{,.zwc}
print 'To rebuild the completion cache, please restart your terminal' print 'To rebuild the completion cache, please restart your terminal'