Enable passing multiple directories to take (#6900)

* enable passing multiple directories to take

* Update take function

Do not call cd if mkdir fails
master
sam-lunt 8 years ago committed by Marc Cornellà
parent 9711d8f731
commit 7cba6bb038
  1. 3
      lib/functions.zsh

@ -11,8 +11,7 @@ function upgrade_oh_my_zsh() {
} }
function take() { function take() {
mkdir -p $1 mkdir -p $@ && cd ${@:$#}
cd $1
} }
function open_command() { function open_command() {

Loading…
Cancel
Save