From 917188675aba132371494b45c2ee1a70254cb59a Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 11:09:43 +0000 Subject: moved to Completion/Base/Utility/_cache_invalid --- Completion/Base/_cache_invalid | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Completion/Base/_cache_invalid (limited to 'Completion/Base') diff --git a/Completion/Base/_cache_invalid b/Completion/Base/_cache_invalid deleted file mode 100644 index e55381439..000000000 --- a/Completion/Base/_cache_invalid +++ /dev/null @@ -1,21 +0,0 @@ -#autoload -# -# Function to decide whether a completions cache needs rebuilding - -local _cache_ident _cache_dir _cache_path _cache_policy -_cache_ident="$1" - -# If the cache is disabled, we never want to rebuild it, so pretend -# it's valid. -zstyle -t ":completion:${curcontext}:" use-cache || return 1 - -zstyle -s ":completion:${curcontext}:" cache-path _cache_dir -: ${_cache_dir:=${ZDOTDIR:-$HOME}/.zcompcache} -_cache_path="$_cache_dir/$_cache_ident" - -# See whether the caching policy says that the cache needs rebuilding -# (the policy will return 0 if it does). -zstyle -s ":completion:${curcontext}:" cache-policy _cache_policy -[[ -n "$_cache_policy" ]] && "$_cache_policy" "$_cache_path" && return 0 - -return 1 -- cgit 1.4.1