diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2013-12-30 12:45:53 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2013-12-30 12:45:53 -0800 |
commit | ea55ea039d6637436896c415073699aa0b39b6e6 (patch) | |
tree | be46e16c5676b275382223035039a17af310a51c /Completion/Zsh/Command | |
parent | e8fb45ef1e1e7a0b9b1411a3ad16df61ea096f41 (diff) | |
download | zsh-ea55ea039d6637436896c415073699aa0b39b6e6.tar.gz zsh-ea55ea039d6637436896c415073699aa0b39b6e6.tar.xz zsh-ea55ea039d6637436896c415073699aa0b39b6e6.zip |
32205: skip cdpath search when prefix begins with "../"
Diffstat (limited to 'Completion/Zsh/Command')
-rw-r--r-- | Completion/Zsh/Command/_cd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_cd b/Completion/Zsh/Command/_cd index b9860ffc8..6b8d7ebeb 100644 --- a/Completion/Zsh/Command/_cd +++ b/Completion/Zsh/Command/_cd @@ -63,7 +63,7 @@ else fi fi - if [[ $PREFIX != (\~|/|./|../)* ]]; then + if [[ $PREFIX != (\~|/|./|../)* && $IPREFIX != ../* ]]; then local tmpcdpath alt alt=() |