mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-04-21 05:43:31 +02:00
d69f2850af
This allows for the user to combine the jump command with something else. In my example cd and jump are now combined like this:
```bash
jumpcd() {
jump $1 > /dev/null || cd $1
}
alias cd="jumpcd"
```