Browse Source

fix typo in cd-wrapper

Yannik Stein 11 years ago
parent
commit
9172b3a89f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/directories.zsh

+ 2 - 2
lib/directories.zsh

@@ -26,9 +26,9 @@ cd () {
   elif [[ "x$*" == "x...." ]]; then
   elif [[ "x$*" == "x...." ]]; then
     cd ../../..
     cd ../../..
   elif [[ "x$*" == "x....." ]]; then
   elif [[ "x$*" == "x....." ]]; then
-    cd ../../..
-  elif [[ "x$*" == "x......" ]]; then
     cd ../../../..
     cd ../../../..
+  elif [[ "x$*" == "x......" ]]; then
+    cd ../../../../..
   else
   else
     builtin cd "$@"
     builtin cd "$@"
   fi
   fi