"tools/vscode:/vscode.git/clone" did not exist on "e24659df354c31626f78f4d46d453e14959a9953"
Add non 0 exit code for missing jump targets (#5500)
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"
```
Please register or sign in to comment