]>
git.rmz.io Git - dotfiles.git/blob - zsh/lib/directories.zsh
4 # Changing/making/removing directory
7 setopt pushd_ignore_dups
12 alias cd...
='cd ../..'
13 alias cd....
='cd ../../..'
14 alias cd.....
='cd ../../../..'
28 if [[ "x$*" == "x..." ]]; then
30 elif [[ "x$*" == "x...." ]]; then
32 elif [[ "x$*" == "x....." ]]; then
34 elif [[ "x$*" == "x......" ]]; then
43 alias d
='dirs -v | head -10'