浏览代码

Merge pull request #1273 from ystein/master

Typo in cd-wrapper
Robby Russell 11 年之前
父节点
当前提交
421a738b49
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/directories.zsh

+ 2 - 2
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