1
0
mirror of https://github.com/wting/autojump synced 2024-09-27 21:43:40 +00:00

zsh/jo: Defer -options to j

This commit is contained in:
Wieland Hoffmann 2013-11-24 23:26:23 +01:00
parent 0b25bef134
commit 26db68a8e8

View File

@ -59,6 +59,11 @@ function jc {
}
function jo {
if [[ ${@} == -* ]]; then
j ${@}
return
fi
if [ -z $(autojump $@) ]; then
echo "autojump: directory '${@}' not found"
echo "Try \`autojump --help\` for more information."