diff options
author | Robby Russell <robby@planetargon.com> | 2015-01-31 06:23:50 -0600 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-01-31 06:23:50 -0600 |
commit | 550ccca91cb45fcf26a8f2c3c60da675b995e3f3 (patch) | |
tree | bae0321bcee402b24fb9320a02e1991b1be26553 /lib | |
parent | 1ac2f8645e9cec48cbcb036f02479d3666ae13c8 (diff) | |
parent | ceb42ecdb6296b136e3ead9e6ab53c24a01fedc9 (diff) | |
download | zsh-550ccca91cb45fcf26a8f2c3c60da675b995e3f3.tar.gz zsh-550ccca91cb45fcf26a8f2c3c60da675b995e3f3.tar.bz2 zsh-550ccca91cb45fcf26a8f2c3c60da675b995e3f3.zip |
Merge pull request #3478 from stephenrjohnson/custom_cache_dir
Allow custom cache dir
Diffstat (limited to 'lib')
-rw-r--r-- | lib/completion.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index 3a19a4eba..ea6139fde 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -38,7 +38,7 @@ cdpath=(.) # Use caching so that commands like apt and dpkg complete are useable zstyle ':completion::complete:*' use-cache 1 -zstyle ':completion::complete:*' cache-path $ZSH/cache/ +zstyle ':completion::complete:*' cache-path $ZSH_CACHE_DIR # Don't complete uninteresting users zstyle ':completion:*:*:*:users' ignored-patterns \ |