diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:11:12 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:11:12 +0000 |
commit | 662f9450fe6b1ed0642416df4d50e193d31ea92b (patch) | |
tree | 90ff70ae70f5cb3b3b174c3733f04db21c4c2f1a /Completion/Base | |
parent | e38ec6c6148129875521e647aa3b0d967b22a9eb (diff) | |
download | zsh-662f9450fe6b1ed0642416df4d50e193d31ea92b.tar.gz zsh-662f9450fe6b1ed0642416df4d50e193d31ea92b.tar.xz zsh-662f9450fe6b1ed0642416df4d50e193d31ea92b.zip |
moved to Completion/Base/Utility/_retrieve_cache
Diffstat (limited to 'Completion/Base')
-rw-r--r-- | Completion/Base/_retrieve_cache | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Completion/Base/_retrieve_cache b/Completion/Base/_retrieve_cache deleted file mode 100644 index 6a82cd48b..000000000 --- a/Completion/Base/_retrieve_cache +++ /dev/null @@ -1,31 +0,0 @@ -#autoload -# -# Retrieval component of completions caching layer - -local _cache_ident _cache_dir _cache_path _cache_policy -_cache_ident="$1" - -if zstyle -t ":completion:${curcontext}:" use-cache; then - # Decide which directory to retrieve cache from, and ensure it exists - zstyle -s ":completion:${curcontext}:" cache-path _cache_dir - : ${_cache_dir:=${ZDOTDIR:-HOME}/.zcompcache} - if [[ ! -d "$_cache_dir" ]]; then - [[ -e "$_cache_dir" ]] && - _message "cache-dir ($_cache_dir) isn't a directory\!" - return 1 - fi - - _cache_path="$_cache_dir/$_cache_ident" - - if [[ -e "$_cache_path" ]]; then - _cache_invalid "$_cache_ident" && return 1 - - . "$_cache_path" - return 0 - else - return 1 - fi -else - return 1 -fi - |