made the 'd' alias only show the directories that can be cd'ed to using the number aliases

master
Alex Light 14 years ago
parent 1120f97305
commit d693711f14
  1. 4
      lib/directories.zsh

@ -36,9 +36,9 @@ cd () {
alias md='mkdir -p'
alias rd=rmdir
alias d='dirs -v'
alias d='dirs -v | head -10'
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}
}

Loading…
Cancel
Save