diff options
author | Robby Russell <robby@planetargon.com> | 2015-02-21 17:04:24 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-02-21 17:04:24 -0800 |
commit | efd6d4d5930a0f407f1107dc7d864e5c67a0cac6 (patch) | |
tree | af9cdebf0614b40620e173a3d5845cc2814531cd | |
parent | a1de65e3595c9bc3438b98d9ca671c2890a4b613 (diff) | |
parent | 6ccf67a077e07bc57cdca6980dcdf346cbd2138e (diff) | |
download | zsh-efd6d4d5930a0f407f1107dc7d864e5c67a0cac6.tar.gz zsh-efd6d4d5930a0f407f1107dc7d864e5c67a0cac6.tar.bz2 zsh-efd6d4d5930a0f407f1107dc7d864e5c67a0cac6.zip |
Merge pull request #3597 from apjanke/no-dot-in-cdpath
Remove '.' from $cdpath to avoid Cygwin breakage
-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 |