diff options
author | Andrew Janke <janke@pobox.com> | 2015-02-16 10:24:22 -0500 |
---|---|---|
committer | Andrew Janke <janke@pobox.com> | 2015-02-16 10:24:22 -0500 |
commit | 6ccf67a077e07bc57cdca6980dcdf346cbd2138e (patch) | |
tree | 335757778416c872d7dfa5220856bb9a3301c87f | |
parent | 5ee54032da9e5f9c5bd96dae877fbf6e08ad7af6 (diff) | |
download | zsh-6ccf67a077e07bc57cdca6980dcdf346cbd2138e.tar.gz zsh-6ccf67a077e07bc57cdca6980dcdf346cbd2138e.tar.bz2 zsh-6ccf67a077e07bc57cdca6980dcdf346cbd2138e.zip |
Do not put explicit dot in $cdpath, since it causes problems on Cygwin due to an underlying zsh bug.
-rw-r--r-- | lib/completion.zsh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index ea6139fde..4b1bb0a62 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -34,7 +34,6 @@ fi # disable named-directories autocompletion zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories -cdpath=(.) # Use caching so that commands like apt and dpkg complete are useable zstyle ':completion::complete:*' use-cache 1 |