X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/698483f78280d2b5d5af36b1b82987d5b7b11f9e..10cf60790cf2430aba9f7e7120ccd414959e4f81:/zsh/lib/directories.zsh diff --git a/zsh/lib/directories.zsh b/zsh/lib/directories.zsh index e445eb8..6c743e4 100644 --- a/zsh/lib/directories.zsh +++ b/zsh/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