diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-04 06:36:45 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-04 06:36:45 -0800 |
commit | 421a738b494d9c574c8782f01f67f25888f050ec (patch) | |
tree | 05d6920c863e0a7bdf720afa0e71a0f970ec2dc5 /lib/directories.zsh | |
parent | 3199d2ed8d70dc45911f34dd7c2ec4b702db3b28 (diff) | |
parent | 9172b3a89fb77f79043d185d247a501b3b93fa6f (diff) | |
download | zsh-421a738b494d9c574c8782f01f67f25888f050ec.tar.gz zsh-421a738b494d9c574c8782f01f67f25888f050ec.tar.bz2 zsh-421a738b494d9c574c8782f01f67f25888f050ec.zip |
Merge pull request #1273 from ystein/master
Typo in cd-wrapper
Diffstat (limited to 'lib/directories.zsh')
-rw-r--r-- | lib/directories.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/directories.zsh b/lib/directories.zsh index e445eb84c..6c743e40e 100644 --- a/lib/directories.zsh +++ b/lib/directories.zsh @@ -26,9 +26,9 @@ cd () { elif [[ "x$*" == "x...." ]]; then cd ../../.. elif [[ "x$*" == "x....." ]]; then - cd ../../.. - elif [[ "x$*" == "x......" ]]; then cd ../../../.. + elif [[ "x$*" == "x......" ]]; then + cd ../../../../.. else builtin cd "$@" fi |