]>
git.rmz.io Git - dotfiles.git/blob - zsh/lib/directories.zsh
96be37c1e3697fdc7ae34c81ea690aad7da7d0a3
4 # Changing/making/removing directory
7 setopt pushd_ignore_dups
11 alias cd...
='cd ../..'
12 alias cd....
='cd ../../..'
13 alias cd.....
='cd ../../../..'
27 if [[ "x$*" == "x..." ]]; then
29 elif [[ "x$*" == "x...." ]]; then
31 elif [[ "x$*" == "x....." ]]; then
33 elif [[ "x$*" == "x......" ]]; then
42 alias d
='dirs -v | head -10'