ohmyzsh/plugins/jump
Tim Spiekerkötter f38b832da5 Add non 0 exit code for missing jump targets
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"
```
2016-10-07 10:46:00 +02:00
..
jump.plugin.zsh Add non 0 exit code for missing jump targets 2016-10-07 10:46:00 +02:00