2016-05-14 18:22:04 -04:00
|
|
|
#
|
|
|
|
# zim_clean_cache - removes all zcompiled files
|
|
|
|
#
|
|
|
|
|
2017-09-26 18:16:26 -04:00
|
|
|
find ${ZIM_HOME} \( -name '*.zwc' -or -name '*.zwc.old' \) -delete
|
|
|
|
rm -f ${ZDOTDIR:-${HOME}}/.zshrc.zwc{,.old}
|
|
|
|
rm -f ${ZDOTDIR:-${HOME}}/${zcompdump_file:-.zcompdump}{,.zwc{,.old}}
|
2016-05-14 18:22:04 -04:00
|
|
|
|
|
|
|
print 'To rebuild the completion cache, please restart your terminal'
|