Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/derekprior/oh-my-zsh into…
Browse files Browse the repository at this point in the history
… derekprior-master
  • Loading branch information
robbyrussell committed Jan 8, 2011
2 parents 55bcf23 + 2b03b95 commit 31bfb61
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/directories.zsh
Expand Up @@ -36,5 +36,9 @@ cd () {

alias md='mkdir -p'
alias rd=rmdir
alias d='dirs -v'

alias d='dirs -v'
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}

0 comments on commit 31bfb61

Please sign in to comment.