1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-04-24 15:23:29 +02:00

Merge pull request #1273 from ystein/master

Typo in cd-wrapper
This commit is contained in:
Robby Russell
2012-12-04 06:36:45 -08:00
+2 -2
View File
@@ -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