diff options
author | Yannik Stein <yannikstein@gmail.com> | 2012-08-05 22:51:11 +0300 |
---|---|---|
committer | Yannik Stein <yannikstein@gmail.com> | 2012-08-05 22:51:11 +0300 |
commit | 9172b3a89fb77f79043d185d247a501b3b93fa6f (patch) | |
tree | 73a9ecb0d36a5b268da89d10a97f8c3c6e0e673c /lib/directories.zsh | |
parent | d05b2010ffd4cd33ff9402c402051b1caf985d97 (diff) | |
download | zsh-9172b3a89fb77f79043d185d247a501b3b93fa6f.tar.gz zsh-9172b3a89fb77f79043d185d247a501b3b93fa6f.tar.bz2 zsh-9172b3a89fb77f79043d185d247a501b3b93fa6f.zip |
fix 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 a787db9eb..1b92df6b3 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 |